Skip to content

Commit 89b2c6b

Browse files
committed
fixup
1 parent 6bada88 commit 89b2c6b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/ci.yml

+8
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,14 @@ jobs:
8181
- name: Checkout
8282
uses: actions/checkout@v3
8383

84+
- name: Set environment variables
85+
run: |
86+
read -r -a vars <<< "${{ matrix.env_vars }}"
87+
for var in "${vars[@]}"; do
88+
echo "$var" >> "$GITHUB_ENV"
89+
done
90+
echo "MAKEFLAGS=-j$(($(nproc) + 1))" >> "$GITHUB_ENV"
91+
8492
- name: Set up Docker Buildx
8593
uses: docker/setup-buildx-action@v2
8694

0 commit comments

Comments
 (0)