Skip to content

Commit ac12ab9

Browse files
committed
upgrade workflow conf
1 parent 8e573ae commit ac12ab9

File tree

1 file changed

+35
-1
lines changed

1 file changed

+35
-1
lines changed

.github/workflows/build-udroid.yml

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Docker Setup QEMU
1616
uses: docker/[email protected]
1717

18-
- name: Satify Dependencies
18+
- name: Satify Dependenciesa
1919
run: sudo apt-get update; sudo apt-get install git build-essential binfmt-support qemu-user-static debootstrap -y
2020

2121
- name: Trigger fs-cook
@@ -105,3 +105,37 @@ jobs:
105105
with:
106106
name: jammy-raw-amd64
107107
path: jammy-amd64
108+
BuildKineticRaw:
109+
name: build Kinetc (22.10)
110+
runs-on: ubuntu-latest
111+
steps:
112+
- name: checkout repository
113+
uses: actions/checkout@v2
114+
115+
- name: Docker Setup QEMU
116+
uses: docker/[email protected]
117+
118+
- name: Satify Dependencies
119+
run: sudo apt-get update; sudo apt-get install git build-essential binfmt-support qemu-user-static debootstrap -y
120+
121+
- name: Trigger fs-cook
122+
run: sudo bash .github/scripts/build-kinetic.sh
123+
124+
- name: save arm64 builds
125+
uses: actions/upload-artifact@v2
126+
with:
127+
name: kinetic-raw-arm64
128+
path: kinetic-arm64
129+
130+
- name: save armhf builds
131+
uses: actions/upload-artifact@v2
132+
with:
133+
name: kinetic-raw-armhf
134+
path: kinetic-armhf
135+
136+
- name: save amd64 builds
137+
uses: actions/upload-artifact@v2
138+
with:
139+
name: kinetic-raw-amd64
140+
path: kinetic-amd64
141+

0 commit comments

Comments
 (0)