diff options
author | red031000 <rubenru09@aol.com> | 2020-12-23 22:54:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-23 22:54:36 +0100 |
commit | 47e834702d7ddccc2e33515f29eea86978240fe6 (patch) | |
tree | ef9cb612ed94c57a0c92e654800767fc8823d44d | |
parent | 18e936fbf9fabf9512612ef222cce75436ddadbc (diff) | |
parent | b4c99c0d1158e25e729fecab5d85a5602fe18a5d (diff) |
Merge pull request #308 from red031000/master
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 |