'Generic Commit'
Some checks failed
Build-Test-Publish / build (linux/amd64) (push) Successful in 22s
Build-Test-Publish / build (linux/arm64) (push) Successful in 24s
Build-Test-Publish / test-install-from-scratch (linux/amd64) (push) Failing after 5s
Build-Test-Publish / test-install-from-scratch (linux/arm64) (push) Failing after 6s

This commit is contained in:
Your Name 2025-06-22 13:22:09 +12:00
parent aaf9f4719d
commit 1be83aa365

View File

@ -27,3 +27,31 @@ jobs:
- name: Build Test Publish All - name: Build Test Publish All
run: | run: |
SOS_WRITE_TOKEN=${{ secrets.SOS_WRITE_TOKEN }} ./buildtestpublish_all.sh SOS_WRITE_TOKEN=${{ secrets.SOS_WRITE_TOKEN }} ./buildtestpublish_all.sh
test-install-from-scratch:
needs: [build]
strategy:
matrix:
platform:
- linux/amd64
- linux/arm64
runs-on: ${{matrix.platform}}
steps:
- name: install
run: |
curl https://getbin.xyz/getpkg-install | bash
- name: test install
run: |
getpkg install whatsdirty
- name: test update
run: |
getpkg update
- name: test list
run: |
getpkg list
- name: test uninstall
run: |
getpkg uninstall whatsdirty
- name: test clean
run: |
getpkg clean