Skip to content

Commit

Permalink
fixup! use older docker
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmlnkn committed Aug 29, 2024
1 parent 22141a1 commit 00609bf
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/appimage-develop.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
name: AppImage (Development Version)

on:
push:
branches: 'develop'
workflow_dispatch:

jobs:
Manylinux-Appimage:
runs-on: ubuntu-latest
container: quay.io/pypa/manylinux2014_x86_64
container: quay.io/pypa/manylinux_2_28_x86_64
env:
APP_PYTHON_VERSION: "3.12"
steps:
# Cannot use checkout@v4 because it requires a newer GLIBC version than manylinux2014!
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build AppImage
working-directory: AppImage
Expand Down
14 changes: 11 additions & 3 deletions .github/workflows/appimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,25 @@ on:
jobs:
Manylinux-Appimage:
runs-on: ubuntu-latest
container: quay.io/pypa/manylinux2014_x86_64:2024.07.15-1
container: quay.io/pypa/manylinux_2_28_x86_64
env:
APP_PYTHON_VERSION: "3.12"
steps:
# Cannot use checkout@v4 because it requires a newer GLIBC version than manylinux2014!
- uses: actions/checkout@v3
- name: Checkout
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
yum install -y https://github.com/cli/cli/releases/download/v2.55.0/gh_2.55.0_linux_amd64.rpm
git config --global --add safe.directory "$PWD"
gh repo clone ${{ github.repositoryUrl }} .
git checkout ${{ github.sha }}
- name: Build AppImage
working-directory: AppImage
run: bash build-ratarmount-appimage.sh

# This action also does not work with manylinux2014 (CentOS 7) anymore,
# probably because CentOS 7 was EOL on 2024-06-30.
- uses: actions/upload-artifact@v3
with:
name: ratarmount-x86_64.AppImage
Expand Down

0 comments on commit 00609bf

Please sign in to comment.