Skip to content

Commit

Permalink
Use latest Py 3.8 & different method to (not) render QT during tests/…
Browse files Browse the repository at this point in the history
…build.
  • Loading branch information
carlosperate committed Dec 11, 2024
1 parent 1a1a640 commit 9a338ae
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'ci-skip') && !contains(github.event.head_commit.message, 'skip-ci')"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down Expand Up @@ -47,4 +47,4 @@ jobs:
- name: Build Mu AppImage
run: |
cd mu
xvfb-run make linux
QT_QPA_PLATFORM=offscreen make linux
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update -qq && \
apt-get install -y --no-install-recommends ca-certificates wget && \
apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/lists/* && \
wget https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13+20220502-x86_64-unknown-linux-gnu-install_only.tar.gz && \
tar -xf cpython-3.8.13+20220502-x86_64-unknown-linux-gnu-install_only.tar.gz -C / && \
rm cpython-3.8.13+20220502-x86_64-unknown-linux-gnu-install_only.tar.gz && \
wget https://github.com/indygreg/python-build-standalone/releases/download/20241002/cpython-3.8.20+20241002-x86_64-unknown-linux-gnu-install_only.tar.gz && \
tar -xf cpython-3.8.20+20241002-x86_64-unknown-linux-gnu-install_only.tar.gz -C / && \
rm cpython-3.8.20+20241002-x86_64-unknown-linux-gnu-install_only.tar.gz && \
ln -s /python/bin/python3.8 /bin/python && \
ln -s /python/bin/python3.8 /bin/python3
ENV PATH /python/bin:$PATH
Expand Down

0 comments on commit 9a338ae

Please sign in to comment.