Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mattnite committed Dec 23, 2024
1 parent 45e4e0b commit 6cb3bf8
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
name: Build
runs-on: ${{ matrix.os }}
continue-on-error: true
uses: ./.github/workflows/setup.yml
with:
runner: ${{ matrix.os }}
steps:
- uses: ./.github/workflows/setup.yml
with:
runner: ${{ matrix.os }}
- name: Build
run: zig build -Doptimize=ReleaseSmall

Expand All @@ -32,10 +32,10 @@ jobs:
raspberrypi/rp2xxx,
stmicro/stm32,
]
uses: ./.github/workflows/setup.yml
with:
runner: ${{ matrix.os }}
steps:
- uses: ./.github/workflows/setup.yml
with:
runner: ${{ matrix.os }}
- name: Unit Test Ports
run: zig build test
working-directory: port/${{ matrix.port_dir }}
Expand All @@ -54,32 +54,32 @@ jobs:
unit-test-uf2:
name: Unit Test UF2
runs-on: ${{ matrix.os }}
uses: ./.github/workflows/setup.yml
with:
runner: ${{ matrix.os }}
steps:
- uses: ./.github/workflows/setup.yml
with:
runner: ${{ matrix.os }}
- name: Unit Test UF2
run: zig build test
working-directory: tools/uf2

build-website:
name: Build Website
runs-on: ${{ matrix.os }}
uses: ./.github/workflows/setup.yml
with:
runner: ${{ matrix.os }}
steps:
- uses: ./.github/workflows/setup.yml
with:
runner: ${{ matrix.os }}
- name: Build Website
run: zig build
working-directory: website

dry-run-packaging:
name: Dry Run Packaging
runs-on: macos-latest
uses: ./.github/workflows/setup.yml
with:
runner: ${{ matrix.os }}
steps:
- uses: ./.github/workflows/setup.yml
with:
runner: ${{ matrix.os }}
- name: Dry Run Packaging
run: |
MICROZIG_VERSION=$(zig build package -- get-version)
Expand Down Expand Up @@ -111,10 +111,10 @@ jobs:
raspberrypi/rp2xxx,
wch/ch32v,
]
uses: ./.github/workflows/setup.yml
with:
runner: ${{ matrix.os }}
steps:
- uses: ./.github/workflows/setup.yml
with:
runner: ${{ matrix.os }}
- name: Build Examples
run: zig build -Doptimize=ReleaseSmall --summary all
working-directory: examples/${{ matrix.example_dir }}
Expand Down

0 comments on commit 6cb3bf8

Please sign in to comment.