File tree 5 files changed +25
-2
lines changed
5 files changed +25
-2
lines changed Original file line number Diff line number Diff line change 29
29
description : ' bidder account address'
30
30
required : false
31
31
type : string
32
+ base_image :
33
+ description : ' Base image tag for agoric-sdk'
34
+ required : false
35
+ default : latest
36
+ type : string
32
37
33
38
concurrency :
34
39
group : ' ${{ github.workflow }} @ ${{ github.event.pull_request.head.label ||
48
53
user1_address : ${{ inputs.user1_address }}
49
54
bidder_mnemonic : ${{ inputs.bidder_mnemonic }}
50
55
bidder_address : ${{ inputs.bidder_address }}
56
+ base_image : ${{ inputs.base_image }}
51
57
52
58
secrets : inherit
Original file line number Diff line number Diff line change 29
29
description : ' bidder account address'
30
30
required : false
31
31
type : string
32
+ base_image :
33
+ description : ' Base image tag for agoric-sdk'
34
+ required : false
35
+ default : latest
36
+ type : string
32
37
33
38
concurrency :
34
39
group : ' ${{ github.workflow }} @ ${{ github.event.pull_request.head.label ||
48
53
user1_address : ${{ inputs.user1_address }}
49
54
bidder_mnemonic : ${{ inputs.bidder_mnemonic }}
50
55
bidder_address : ${{ inputs.bidder_address }}
56
+ base_image : ${{ inputs.base_image }}
51
57
52
58
secrets : inherit
Original file line number Diff line number Diff line change 30
30
description : ' bidder account address'
31
31
required : false
32
32
type : string
33
+ base_image :
34
+ description : ' Base image tag for agoric-sdk'
35
+ required : false
36
+ default : latest
37
+ type : string
33
38
34
39
jobs :
35
40
e2e :
86
91
COMMIT_INFO_MESSAGE : ${{ github.event.pull_request.title }}
87
92
COMMIT_INFO_SHA : ${{ github.event.pull_request.head.sha }}
88
93
CYPRESS_MNEMONIC_PHRASE : ${{ inputs.mnemonic_phrase }}
94
+ BASE_IMAGE_TAG_INPUT : ${{ inputs.base_image }}
89
95
# Liquidation Secrets
90
96
CYPRESS_GOV1_MNEMONIC : ${{ secrets.CYPRESS_GOV1_MNEMONIC }}
91
97
CYPRESS_GOV1_ADDRESS : ${{ secrets.CYPRESS_GOV1_ADDRESS }}
Original file line number Diff line number Diff line change 1
- FROM ghcr.io/agoric/agoric-sdk:45
1
+ ARG BASE_IMAGE_TAG
2
+
3
+ FROM ghcr.io/agoric/agoric-sdk:${BASE_IMAGE_TAG}
2
4
3
5
# Add the Agoric CLI to the PATH to access 'agops' from the shell.
4
6
ENV PATH="/usr/src/agoric-sdk/packages/agoric-cli/bin:${PATH}"
Original file line number Diff line number Diff line change @@ -6,7 +6,10 @@ services:
6
6
- synpress
7
7
- daily-tests
8
8
container_name : synpress
9
- build : ../..
9
+ build :
10
+ context : ../..
11
+ args :
12
+ BASE_IMAGE_TAG : ${BASE_IMAGE_TAG_INPUT}
10
13
environment :
11
14
- DISPLAY=display:0.0
12
15
- CYPRESS_PRIVATE_KEY_WITH_FUNDS=${CYPRESS_PRIVATE_KEY_WITH_FUNDS}
You can’t perform that action at this time.
0 commit comments