Skip to content

Commit e51c014

Browse files
committed
ci: adds test build for qemu arm64
Signed-off-by: Ramon Roche <[email protected]>
1 parent c32fdd0 commit e51c014

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Build SGL QEMU ARM64
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
build:
13+
name: "Setup Env & Build"
14+
runs-on: ubuntu-latest
15+
env:
16+
KAS_WORKING_DIR: "${{ github.workspace }}/kas-build"
17+
18+
steps:
19+
- name: Checkout repository
20+
uses: actions/checkout@v3
21+
22+
- name: Set up Python
23+
uses: actions/setup-python@v4
24+
with:
25+
python-version: '3.x'
26+
27+
- name: Install kas
28+
run: |
29+
python -m pip install --upgrade pip
30+
pip install kas
31+
32+
- name: Build SGL
33+
run: |
34+
mkdir -p "$KAS_WORKING_DIR"
35+
kas build kas/sgl-scarthgap-qemuarm64.yml

0 commit comments

Comments
 (0)