Skip to content

Commit

Permalink
ci: add burn and test script (for local ci)
Browse files Browse the repository at this point in the history
  • Loading branch information
nekorouter committed May 14, 2024
1 parent 8ce794e commit 43c64fd
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/burn_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: mkimg-th1520-test

on:
workflow_run:
workflows: ["mkimg-th1520-ci"]
types:
- completed

jobs:
download:
runs-on: ["ubuntu-latest"]
steps:
- name: 'Download artifact'
uses: actions/download-artifact@v4
- name: 'List all downloaded files'
run: ls -R $GITHUB_WORKSPACE
- name: 'Decompress artifact'
run: |
unzip th1520-lpi4a-*.zip
zstd -d ./*.zst
- name: 'List all downloaded files'
run: ls -R $GITHUB_WORKSPACE

0 comments on commit 43c64fd

Please sign in to comment.