|
5 | 5 | - "**.sh" |
6 | 6 | - "**.yml" |
7 | 7 | jobs: |
8 | | - BuildImpishRaw: |
9 | | - name: build impish |
10 | | - runs-on: ubuntu-latest |
11 | | - steps: |
12 | | - - name: checkout repository |
13 | | - uses: actions/checkout@v2 |
14 | | - |
15 | | - - name: Docker Setup QEMU |
16 | | - |
17 | | - |
18 | | - - name: Satify Dependenciesa |
19 | | - run: sudo apt-get update; sudo apt-get install git build-essential binfmt-support qemu-user-static debootstrap -y |
20 | | - |
21 | | - - name: Trigger fs-cook |
22 | | - run: sudo bash .github/scripts/build-impish.sh |
23 | | - |
24 | | - - name: save arm64 builds |
25 | | - uses: actions/upload-artifact@v2 |
26 | | - with: |
27 | | - name: impish-raw-arm64 |
28 | | - path: impish-arm64 |
29 | | - |
30 | | - - name: save armhf builds |
31 | | - uses: actions/upload-artifact@v2 |
32 | | - with: |
33 | | - name: impish-raw-armhf |
34 | | - path: impish-armhf |
35 | | - |
36 | | - - name: save amd64 builds |
37 | | - uses: actions/upload-artifact@v2 |
38 | | - with: |
39 | | - name: impish-raw-amd64 |
40 | | - path: impish-amd64 |
41 | | - |
42 | | - BuidHirsuteRaw: |
43 | | - name: build hirsute |
44 | | - runs-on: ubuntu-latest |
45 | | - steps: |
46 | | - - name: checkout repo |
47 | | - uses: actions/checkout@v2 |
48 | | - |
49 | | - - name: Docker Setup QEMU |
50 | | - |
51 | | - |
52 | | - - name: Satify Dependencies |
53 | | - run: sudo apt-get update; sudo apt-get install git build-essential binfmt-support qemu-user-static debootstrap -y |
54 | | - |
55 | | - - name: Trigger fs-cook |
56 | | - run: sudo bash .github/scripts/build-hirsute.sh |
57 | | - |
58 | | - - name: save arm64 builds |
59 | | - uses: actions/upload-artifact@v2 |
60 | | - with: |
61 | | - name: hirsute-raw-arm64 |
62 | | - path: hirsute-arm64 |
63 | | - |
64 | | - - name: save armhf builds |
65 | | - uses: actions/upload-artifact@v2 |
66 | | - with: |
67 | | - name: hirsute-raw-armhf |
68 | | - path: hirsute-armhf |
69 | | - |
70 | | - - name: save amd64 builds |
71 | | - uses: actions/upload-artifact@v2 |
72 | | - with: |
73 | | - name: hirsute-raw-amd64 |
74 | | - path: hirsute-amd64 |
75 | 8 | BuidJammyRaw: |
76 | 9 | name: build Jammy |
77 | 10 | runs-on: ubuntu-latest |
|
0 commit comments