File tree 2 files changed +7
-5
lines changed
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 11
11
12
12
jobs :
13
13
Test :
14
+ name : ${{ matrix.os }}
14
15
if : ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
15
16
runs-on : ${{ matrix.os }}
16
17
strategy :
@@ -126,6 +127,7 @@ jobs:
126
127
./dist/modern/
127
128
128
129
Docker :
130
+ name : ${{ matrix.container }}
129
131
if : ${{ !contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, '[skip test]') }}
130
132
runs-on : ${{ matrix.os }}
131
133
strategy :
@@ -138,9 +140,9 @@ jobs:
138
140
pnpm :
139
141
- 8
140
142
container :
141
- - " ./dev/docker/__tests__/ arch.dockerfile"
142
- - " ./dev/docker/__tests__/ fedora.dockerfile"
143
- - " ./dev/docker/__tests__/ ubuntu.dockerfile"
143
+ - " arch.dockerfile"
144
+ - " fedora.dockerfile"
145
+ - " ubuntu.dockerfile"
144
146
steps :
145
147
- uses : actions/checkout@v3
146
148
with :
@@ -174,4 +176,4 @@ jobs:
174
176
- name : Build
175
177
id : docker_build
176
178
run : |
177
- docker build -f ${{ matrix.container }} -t setup-cpp .
179
+ docker build -f ./dev/docker/__tests__/ ${{ matrix.container }} -t setup-cpp .
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ function main() {
29
29
exes . map ( ( exe ) =>
30
30
execaNode ( "./node_modules/caxa/build/index.mjs" , [
31
31
"--input" ,
32
- "./dist/node16 " ,
32
+ "./dist/modern " ,
33
33
"--output" ,
34
34
`./exe/setup-cpp-${ process . arch } -${ getPlatformName ( ) } ${ exe } ` ,
35
35
"--" ,
You can’t perform that action at this time.
0 commit comments