Skip to content

Commit 71fd2f4

Browse files
committed
Another fixup
1 parent 89b2c6b commit 71fd2f4

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/ci.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -73,17 +73,17 @@ jobs:
7373
matrix:
7474
configuration:
7575
- job_name: 'x86_64 (mingw32-w64): Windows (Debian stable, Wine)'
76-
env_var: 'HOST=x86_64-w64-mingw32'
76+
env_vars: 'HOST=x86_64-w64-mingw32'
7777
- job_name: 'i686 (mingw32-w64): Windows (Debian stable, Wine)'
78-
env_var: 'HOST=i686-w64-mingw32'
78+
env_vars: 'HOST=i686-w64-mingw32'
7979

8080
steps:
8181
- name: Checkout
8282
uses: actions/checkout@v3
8383

8484
- name: Set environment variables
8585
run: |
86-
read -r -a vars <<< "${{ matrix.env_vars }}"
86+
read -r -a vars <<< "${{ matrix.configuration.env_vars }}"
8787
for var in "${vars[@]}"; do
8888
echo "$var" >> "$GITHUB_ENV"
8989
done
@@ -226,13 +226,13 @@ jobs:
226226
matrix:
227227
configuration:
228228
- job_name: 'x86_64 (MSVC): Windows (Debian stable, Wine)'
229-
env_var:
229+
env_vars:
230230
- job_name: 'x86_64 (MSVC): Windows (Debian stable, Wine, int128_struct)'
231-
env_var: 'WIDEMUL=int128_struct'
231+
env_vars: 'WIDEMUL=int128_struct'
232232
- job_name: 'x86_64 (MSVC): Windows (Debian stable, Wine, int128_struct with __(u)mulh)'
233-
env_var: 'WIDEMUL=int128_struct CPPFLAGS=-DSECP256K1_MSVC_MULH_TEST_OVERRIDE'
233+
env_vars: 'WIDEMUL=int128_struct CPPFLAGS=-DSECP256K1_MSVC_MULH_TEST_OVERRIDE'
234234
- job_name: 'i686 (MSVC): Windows (Debian stable, Wine)'
235-
env_var: 'HOST=i686-w64-mingw32 CC=/opt/msvc/bin/x86/cl AR=/opt/msvc/bin/x86/lib NM="/opt/msvc/bin/x86/dumpbin -symbols -headers"'
235+
env_vars: 'HOST=i686-w64-mingw32 CC=/opt/msvc/bin/x86/cl AR=/opt/msvc/bin/x86/lib NM="/opt/msvc/bin/x86/dumpbin -symbols -headers"'
236236

237237
steps:
238238
- name: Checkout
@@ -284,7 +284,7 @@ jobs:
284284
NM="${{ env.NM }}" \
285285
CFLAGS="${{ env.CFLAGS }}" \
286286
LDFLAGS="${{ env.LDFLAGS }}" \
287-
${{ matrix.configuration.env_var }}
287+
${{ matrix.configuration.env_vars }}
288288
git config --global --add safe.directory ${{ github.workspace }}
289289
cd ${{ github.workspace }}
290290
./ci/cirrus.sh

0 commit comments

Comments
 (0)