Skip to content

Commit

Permalink
CI: Add comments to explain workarounds for Debian Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
DeeDeeG committed Jan 25, 2024
1 parent b7cd630 commit fd21843
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ jobs:
node-version: ${{ env.NODE_VERSION }}

- name: Setup Python
# actions/setup-python's copy of Python is compiled for too new glibc,
# which won't work in a Debian 10 Docker image.
# Get Python from apt repos instead on Linux.
if: ${{ runner.os != 'Linux' }}
uses: actions/setup-python@v4
with:
Expand Down Expand Up @@ -213,6 +216,10 @@ jobs:


test-and-upload-Linux:
# I couldn't figure out how to get these visual tests to actually run in the
# Debian Docker environment. If anyone can make it work, feel free to
# re-combine visual testing on Linux back into the main build job above!
# - DeeDeeG
runs-on: ubuntu-latest
needs: build

Expand Down

0 comments on commit fd21843

Please sign in to comment.