-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f6a4ab6
commit e1773de
Showing
2 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |