Skip to content

Commit

Permalink
build: Build on rpi for linux arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
krille-chan committed Oct 21, 2024
1 parent 8c94681 commit bf009dd
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,25 @@ jobs:
- run: flutter build web

build_debug_linux:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, self-hosted]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- run: cat .github/workflows/versions.env >> $GITHUB_ENV
- name: Setup Flutter SDK
uses: flutter-actions/setup-flutter@v3
with:
channel: stable
version: ${{ env.FLUTTER_VERSION }}
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install curl clang cmake ninja-build pkg-config libgtk-3-dev libblkid-dev liblzma-dev libjsoncpp-dev cmake-data libsecret-1-dev libsecret-1-0 librhash0 libssl-dev -y
- run: flutter pub get
- run: flutter build linux --target-platform linux-x64

build_debug_linux_arm64:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- run: cat .github/workflows/versions.env >> $GITHUB_ENV
Expand Down

0 comments on commit bf009dd

Please sign in to comment.