Skip to content

Commit 79d2ebf

Browse files
- attempting build workaround for missing symbols in glibc if running
under docker;
1 parent 9d124dc commit 79d2ebf

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/build-and-upload.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,12 @@ jobs:
7272
if: github.event_name != 'release' && matrix.os == 'windows-latest'
7373
run: ("DEV_BUILD=" + (get-content devN.txt)) >> $env:GITHUB_ENV # for setup.py
7474

75+
# downgraded to @v3 if using container: https://github.com/actions/checkout/issues/1487
76+
- uses: actions/checkout@v3
77+
if: matrix.container != ''
78+
7579
- uses: actions/checkout@v4
80+
if: matrix.container == ''
7681

7782
- name: Mark workspace safe for git
7883
# needed for container and self-hosted runners; see https://github.com/actions/checkout/issues/766

0 commit comments

Comments
 (0)