Skip to content

Commit

Permalink
Build
Browse files Browse the repository at this point in the history
  • Loading branch information
eirikb committed Oct 2, 2023
1 parent 66525d3 commit f9fd7a1
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion .github/workflows/gg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ jobs:
needs: stage1
strategy:
matrix:
os: [ ubuntu-20.04, ubuntu-22.04, windows-2019, windows-2022, macOS-11, macOS-12, macos-latest-xlarge ]
os: [ ubuntu-20.04, ubuntu-22.04, windows-2019, windows-2022, macOS-11, macOS-12 ]
cmd: [ "node -v", "java -version", "gradle -version", "maven -v", "openapi version", "rat -V", "run:java@14 java -version", "deno -V" ]

runs-on: ${{ matrix.os }}
Expand All @@ -275,6 +275,28 @@ jobs:
echo "Nice, let's try again"
sh gg.cmd -v ${{ matrix.cmd }}
test-OS-M1:
needs: stage1
strategy:
matrix:
os: [ macos-latest-xlarge ]
cmd: [ "node -v", "java -version", "gradle -version", "maven -v", "openapi version", "rat -V", "run:java@14 java -version" ]

runs-on: ${{ matrix.os }}
steps:
- name: Download gg
uses: actions/download-artifact@v2
with:
name: gg.cmd

- name: Run!
shell: bash
run: |
set -x
sh gg.cmd -v ${{ matrix.cmd }}
echo "Nice, let's try again"
sh gg.cmd -v ${{ matrix.cmd }}
test-ARM:
needs: stage1
strategy:
Expand Down

0 comments on commit f9fd7a1

Please sign in to comment.