File tree 5 files changed +14
-6
lines changed
5 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 35
35
runs-on : ${{ matrix.os }}
36
36
steps :
37
37
- 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'
38
42
- uses : ruby/setup-ruby@v1
39
43
with :
40
44
ruby-version : ${{ matrix.ruby }}
Original file line number Diff line number Diff line change @@ -24,10 +24,13 @@ ENV HOME=/hh
24
24
WORKDIR /app
25
25
EXPOSE 8545
26
26
27
+ ARG PORT=8080
28
+
27
29
COPY package.json .
28
30
RUN npm install
29
31
30
32
COPY hardhat.config.js .
33
+ RUN sed -i 's/PORT/$PORT/g' hardhat.config.js
31
34
COPY contracts contracts
32
35
COPY ignition ignition
33
36
RUN rm -rf ignition/deployments
Original file line number Diff line number Diff line change @@ -24,10 +24,10 @@ require("@nomicfoundation/hardhat-toolbox");
24
24
25
25
module . exports = {
26
26
solidity : "0.8.28" ,
27
- defaultNetwork : ' foo' ,
27
+ defaultNetwork : " foo" ,
28
28
networks : {
29
29
foo : {
30
- url : ' http://host.docker.internal:1025'
30
+ url : " http://host.docker.internal:PORT"
31
31
}
32
32
}
33
33
} ;
Original file line number Diff line number Diff line change @@ -78,9 +78,10 @@ def test_checks_balance_on_hardhat
78
78
donce (
79
79
home : File . join ( __dir__ , '../../hardhat' ) ,
80
80
ports : { port => 8545 } ,
81
+ args : "--build-arg PORT=#{ port } " ,
81
82
command : 'npx hardhat node' ,
82
- log : Loog ::NULL
83
- ) do | _ |
83
+ log : Loog ::VERBOSE
84
+ ) do
84
85
wait_for ( port )
85
86
cmd = [
86
87
'(npx hardhat ignition deploy ./ignition/modules/Foo.ts --network foo)' ,
Original file line number Diff line number Diff line change 35
35
Minitest ::Reporters . use! [ Minitest ::Reporters ::SpecReporter . new ]
36
36
37
37
# 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: [])
You can’t perform that action at this time.
0 commit comments