Pinecil v2 multi-lang

Update push.yml
This commit is contained in:
Ben V. Brown
2022-07-30 23:01:25 +10:00
parent b25c8455ec
commit 58edcd8c40

View File

@@ -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