Skip to content

Commit

Permalink
add appimage tests
Browse files Browse the repository at this point in the history
  • Loading branch information
theofficialgman authored and pguyot committed May 31, 2024
1 parent f6a4ab6 commit e1773de
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test-appimage-aarch64.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Test appimage aarch64
on:
push:
branches:
- 'main'
- 'releases/**'
pull_request:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./ # pguyot/arm-runner-action@HEAD
with:
cpu: cortex-a53
base_image: raspios_lite_arm64:latest
commands: |
sudo apt install libfuse2 -y
wget https://github.com/AppImage/AppImageKit/releases/download/13/appimagetool-aarch64.AppImage
chmod +x appimagetool-aarch64.AppImage
./appimagetool-aarch64.AppImage --version
22 changes: 22 additions & 0 deletions .github/workflows/test-appimage-armv7l.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Test appimage armv7l
on:
push:
branches:
- 'main'
- 'releases/**'
pull_request:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./ # pguyot/arm-runner-action@HEAD
with:
cpu: cortex-a8
commands: |
sudo apt install libfuse2 -y
wget https://github.com/AppImage/AppImageKit/releases/download/13/appimagetool-armhf.AppImage
chmod +x appimagetool-armhf.AppImage
./appimagetool-armhf.AppImage --version

0 comments on commit e1773de

Please sign in to comment.