diff options
author | red031000 <rubenru09@aol.com> | 2020-12-23 21:40:52 +0000 |
---|---|---|
committer | red031000 <rubenru09@aol.com> | 2020-12-23 21:40:52 +0000 |
commit | b4c99c0d1158e25e729fecab5d85a5602fe18a5d (patch) | |
tree | ef9cb612ed94c57a0c92e654800767fc8823d44d | |
parent | 402e915ff5045ba1983973b1dd3a323c2dfcc567 (diff) |
build diamond and pearl in the same job
-rw-r--r-- | .github/workflows/build.yml | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9666cbdd..ba976726 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,10 +15,6 @@ jobs: build: runs-on: ubuntu-18.04 - strategy: - matrix: - version: [diamond, pearl] - steps: - name: Update and Install Software run: | @@ -45,8 +41,10 @@ jobs: mv include/nitro/specfiles/ARM7-TS.lcf.template $GITHUB_WORKSPACE/arm7 mv include/nitro/specfiles/ARM9-TS.lcf.template $GITHUB_WORKSPACE/arm9 working-directory: ~ - - name: Build - run: make ${{ matrix.version }} + - name: Build Diamond + run: make diamond + - name: Build Pearl + run: make pearl - name: Webhook run: | sudo chmod 755 $GITHUB_WORKSPACE/.github/calcrom/webhook.sh |