diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-03-25 22:09:09 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-03-25 22:09:09 +0100 |
| commit | 6299a1152da82954564ee41311b2a2b36443d41c (patch) | |
| tree | 35901f3d6d5e956789b354eae8fbb2d994d951dc /.github | |
| parent | d215ed91d1cc9096d301e4670b34129f9b4a4cd6 (diff) | |
arm64(ci): add CI for arm64.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/arm64.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/arm64.yml b/.github/workflows/arm64.yml new file mode 100644 index 0000000..8e6a072 --- /dev/null +++ b/.github/workflows/arm64.yml @@ -0,0 +1,19 @@ +name: FW CI + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Install Packages + run: sudo apt update && sudo apt install gcc-arm-none-eabi + - name: Build FW (ARM64) + run: cd src && make all
\ No newline at end of file |
