From 58edcd8c4050734f64b56cf7990a0419366b6323 Mon Sep 17 00:00:00 2001 From: "Ben V. Brown" Date: Sat, 30 Jul 2022 23:01:25 +1000 Subject: [PATCH] Pinecil v2 multi-lang Update push.yml --- .github/workflows/push.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index fb9b1f84..af9e9d53 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -60,12 +60,12 @@ jobs: image: alpine:3.16 strategy: matrix: - model: ["Pinecil"] + model: ["Pinecil", "Pinecilv2"] fail-fast: true steps: - name: Install dependencies (apk) - run: apk add --no-cache gcc-riscv-none-elf gcc-arm-none-eabi newlib-riscv-none-elf newlib-arm-none-eabi findutils python3 py3-pip make git bash musl-dev + run: apk add --no-cache gcc-riscv-none-elf newlib-riscv-none-elf findutils python3 py3-pip make git bash musl-dev - name: Install dependencies (python) run: python3 -m pip install bdflib @@ -96,13 +96,13 @@ jobs: if-no-files-found: error - name: Generate json index file - run: cd source && python3 metadata.py Pinecil_multi-lang.json + run: cd source && python3 metadata.py ${{ matrix.model }}_multi-lang.json - name: Archive ${{ matrix.model }} index file uses: actions/upload-artifact@v3 with: name: metadata - path: source/Hexfile/Pinecil_multi-lang.json + path: source/Hexfile/${{ matrix.model }}_multi-lang.json tests: runs-on: ubuntu-20.04