Skip to content

Commit 7d03eb9

Browse files
committed
#6: more
1 parent a4c3b25 commit 7d03eb9

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

.github/workflows/rake.yml

+4
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ jobs:
3535
runs-on: ${{ matrix.os }}
3636
steps:
3737
- uses: actions/checkout@v4
38+
- run: |
39+
sudo apt-get update --yes --fix-missing
40+
sudo apt-get install --yes autoconf
41+
if: matrix.os == 'ubuntu-24.04'
3842
- uses: ruby/setup-ruby@v1
3943
with:
4044
ruby-version: ${{ matrix.ruby }}

hardhat/Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,13 @@ ENV HOME=/hh
2424
WORKDIR /app
2525
EXPOSE 8545
2626

27+
ARG PORT=8080
28+
2729
COPY package.json .
2830
RUN npm install
2931

3032
COPY hardhat.config.js .
33+
RUN sed -i 's/PORT/$PORT/g' hardhat.config.js
3134
COPY contracts contracts
3235
COPY ignition ignition
3336
RUN rm -rf ignition/deployments

hardhat/hardhat.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ require("@nomicfoundation/hardhat-toolbox");
2424

2525
module.exports = {
2626
solidity: "0.8.28",
27-
defaultNetwork: 'foo',
27+
defaultNetwork: "foo",
2828
networks: {
2929
foo: {
30-
url: 'http://host.docker.internal:1025'
30+
url: "http://host.docker.internal:PORT"
3131
}
3232
}
3333
};

test/erc20/test_wallet.rb

+3-2
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,10 @@ def test_checks_balance_on_hardhat
7878
donce(
7979
home: File.join(__dir__, '../../hardhat'),
8080
ports: { port => 8545 },
81+
args: "--build-arg PORT=#{port}",
8182
command: 'npx hardhat node',
82-
log: Loog::NULL
83-
) do |_|
83+
log: Loog::VERBOSE
84+
) do
8485
wait_for(port)
8586
cmd = [
8687
'(npx hardhat ignition deploy ./ignition/modules/Foo.ts --network foo)',

test/test__helper.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@
3535
Minitest::Reporters.use! [Minitest::Reporters::SpecReporter.new]
3636

3737
# To make tests retry on failure:
38-
require 'minitest/retry'
39-
Minitest::Retry.use!(methods_to_skip: [])
38+
# require 'minitest/retry'
39+
# Minitest::Retry.use!(methods_to_skip: [])

0 commit comments

Comments
 (0)