@@ -73,17 +73,17 @@ jobs:
73
73
matrix :
74
74
configuration :
75
75
- 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'
77
77
- job_name : ' i686 (mingw32-w64): Windows (Debian stable, Wine)'
78
- env_var : ' HOST=i686-w64-mingw32'
78
+ env_vars : ' HOST=i686-w64-mingw32'
79
79
80
80
steps :
81
81
- name : Checkout
82
82
uses : actions/checkout@v3
83
83
84
84
- name : Set environment variables
85
85
run : |
86
- read -r -a vars <<< "${{ matrix.env_vars }}"
86
+ read -r -a vars <<< "${{ matrix.configuration. env_vars }}"
87
87
for var in "${vars[@]}"; do
88
88
echo "$var" >> "$GITHUB_ENV"
89
89
done
@@ -226,13 +226,13 @@ jobs:
226
226
matrix :
227
227
configuration :
228
228
- job_name : ' x86_64 (MSVC): Windows (Debian stable, Wine)'
229
- env_var :
229
+ env_vars :
230
230
- job_name : ' x86_64 (MSVC): Windows (Debian stable, Wine, int128_struct)'
231
- env_var : ' WIDEMUL=int128_struct'
231
+ env_vars : ' WIDEMUL=int128_struct'
232
232
- 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'
234
234
- 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"'
236
236
237
237
steps :
238
238
- name : Checkout
@@ -284,7 +284,7 @@ jobs:
284
284
NM="${{ env.NM }}" \
285
285
CFLAGS="${{ env.CFLAGS }}" \
286
286
LDFLAGS="${{ env.LDFLAGS }}" \
287
- ${{ matrix.configuration.env_var }}
287
+ ${{ matrix.configuration.env_vars }}
288
288
git config --global --add safe.directory ${{ github.workspace }}
289
289
cd ${{ github.workspace }}
290
290
./ci/cirrus.sh
0 commit comments