Skip to content

Commit 898bed5

Browse files
committed
ci: test: building arm64 chroot
install ppa was working
1 parent 87ab37c commit 898bed5

File tree

1 file changed

+21
-4
lines changed

1 file changed

+21
-4
lines changed

.github/workflows/test.yml

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1515
jobs:
1616
# This workflow contains a single job called "build"
17-
build:
17+
build-chroot:
1818
# The type of runner that the job will run on
1919
runs-on: ubuntu-latest
2020
#runs-on: ubuntu-18.04
@@ -42,6 +42,23 @@ jobs:
4242
sudo apt update
4343
sudo apt install qemu-user-static
4444
45-
# - name: build arm64 chroot
46-
# run: |
47-
# ./buildchroot.sh arm64
45+
- name: build arm64 chroot
46+
run: |
47+
./buildchroot.sh arm64
48+
49+
- name: Upload binaries to release
50+
# if: endsWith(github.ref,'-main')
51+
uses: softprops/action-gh-release@v1
52+
with:
53+
token: ${{ secrets.GITHUB_TOKEN }}
54+
# body: ${{ github.sha }}
55+
tag_name: "CHROOT-Bullseye"
56+
target_commitish: ${{ github.sha }}
57+
files: |
58+
debian_*.tar.gz
59+
60+
- uses: actions/upload-artifact@v2
61+
with:
62+
name: bullseye-chroot
63+
path: |
64+
debian_*.tar.gz

0 commit comments

Comments
 (0)