the tls issue was fixed, remove the check, improve actifacts uploading
Some checks failed
BeagleBone Black Buildroot / build (push) Failing after 1m9s
Some checks failed
BeagleBone Black Buildroot / build (push) Failing after 1m9s
This commit is contained in:
parent
a6529368b6
commit
897f04b0b2
1 changed files with 15 additions and 6 deletions
|
|
@ -13,10 +13,6 @@ jobs:
|
|||
image: ghcr.io/catthehacker/ubuntu:runner-22.04
|
||||
|
||||
steps:
|
||||
- name: Verify TLS connection
|
||||
run: |
|
||||
curl -L https://github.com -v
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
|
@ -32,13 +28,26 @@ jobs:
|
|||
- name: Build system
|
||||
run: |
|
||||
make -j$(nproc)
|
||||
echo "Finished, printing the output dir content"
|
||||
ls output/images/
|
||||
|
||||
- name: Create artifact directory
|
||||
run: |
|
||||
mkdir -p artifacts
|
||||
cp output/images/zImage artifacts/
|
||||
cp output/images/rootfs.ext2 artifacts/
|
||||
cp output/images/am335x-boneblack.dtb artifacts/
|
||||
cp output/images/am335x-boneblack-wireless.dtb artifacts/
|
||||
cp output/images/am335x-boneblue.dtb artifacts/
|
||||
cp output/images/am335x-bonegreen.dtb artifacts/
|
||||
cp output/images/am335x-bonegreen-wireless.dtb artifacts/
|
||||
cp output/images/am335x-bone.dtb artifacts/
|
||||
cp output/images/boot.vfat artifacts/
|
||||
cp output/images/MLO artifacts/
|
||||
cp output/images/rootfs.ext2 artifacts/
|
||||
cp output/images/rootfs.tar artifacts/
|
||||
cp output/images/sdcard.img artifacts/
|
||||
cp output/images/u-boot.img artifacts/
|
||||
cp output/images/uEnv.txt artifacts/
|
||||
cp output/images/zImage artifacts/
|
||||
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue