From 1d34ea91abf47e24178984cc597895b5ad5bad4d Mon Sep 17 00:00:00 2001 From: human9000 Date: Tue, 30 Jun 2026 13:33:12 +0500 Subject: [PATCH 1/2] fix onnx bench job --- .github/workflows/pr-onnx-bench.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-onnx-bench.yml b/.github/workflows/pr-onnx-bench.yml index 688b8c9b..951a5113 100644 --- a/.github/workflows/pr-onnx-bench.yml +++ b/.github/workflows/pr-onnx-bench.yml @@ -30,7 +30,7 @@ jobs: env: ASSET_DIR: /home/runner/.cache/yscv-onnx-pr-bench/assets - OUT_DIR: ${{ runner.temp }}/yscv-onnx-pr-bench + OUT_DIR: /home/runner/work/_temp/yscv-onnx-pr-bench steps: - name: Checkout default branch From 3f90435eca066b886da762de8d92079e29b0f470 Mon Sep 17 00:00:00 2001 From: human9000 Date: Tue, 30 Jun 2026 13:37:11 +0500 Subject: [PATCH 2/2] add `actionlint` job to catch github actions bugs --- .github/workflows/actionlint.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/actionlint.yml diff --git a/.github/workflows/actionlint.yml b/.github/workflows/actionlint.yml new file mode 100644 index 00000000..1c8c5371 --- /dev/null +++ b/.github/workflows/actionlint.yml @@ -0,0 +1,24 @@ +name: Workflow Lint + +on: + pull_request: + paths: + - ".github/workflows/**" + +jobs: + actionlint: + runs-on: ubuntu-24.04 + permissions: + contents: read + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Install actionlint + run: | + curl -sSL https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash \ + | bash -s -- 1.7.7 /usr/local/bin + + - name: Run actionlint + run: actionlint