From fa5c2a24b56c4adb9759c12d5cea19666270e6d5 Mon Sep 17 00:00:00 2001 From: Theta Nil <20186755+thetanil@users.noreply.github.com> Date: Sun, 26 Jun 2022 01:08:41 -0400 Subject: [PATCH] Add tiny / opt to CI matrix (#448) --- .github/workflows/build.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 01865a5a7..e06681895 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,18 +12,16 @@ on: workflow_dispatch: jobs: - build: + matrix_on_mode: runs-on: ubuntu-latest - + strategy: + matrix: + mode: ["", tiny, opt] steps: - uses: actions/checkout@v3 - name: support ape bins run: sudo sh -c "echo ':APE:M::MZqFpD::/bin/sh:' >/proc/sys/fs/binfmt_misc/register" - # gh-action runners have 2 cpus with 1 thread each - - name: make everything - run: V=0 make -j2 - - - name: printargs.com - run: ./o/examples/printargs.com + - name: make matrix + run: V=0 make -j2 MODE=${{ matrix.mode }}