Skip to content

Commit

Permalink
Merge pull request #17 from aster-void/test-on-more-platform
Browse files Browse the repository at this point in the history
check: run GitHub checks on more platforms
  • Loading branch information
VanCoding authored Feb 5, 2025
2 parents 7c79ee4 + 07d4ee4 commit 0d4f9a4
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,15 @@ on:
jobs:
check:
name: Check
runs-on: ubuntu-latest
strategy:
matrix:
platform:
# see about runners: https://docs.github.com/en/actions/writing-workflows/choosing-where-your-workflow-runs/choosing-the-runner-for-a-job#standard-github-hosted-runners-for-public-repositories
- ubuntu-latest # x64 linux
- ubuntu-24.04-arm # arm linux
- macos-13 # Intel macOS
- macos-latest # arm macOS
runs-on: ${{ matrix.platform }}
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 6 additions & 0 deletions tests.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ let
libquery-engine-hash = "sha256-oalG9QKuxURtdgs5DgJZZtyWMz3ZpywHlov+d1ct2vA=";
schema-engine-hash = "sha256-5bp8iiq6kc9c37G8dNKVHKWJHvaxFaetR4DOR/0/eWs=";
};
x86_64-darwin = {
prisma-fmt-hash = "sha256-Z0AIuCRW0GEd6QRiyYdVVS1Zb6d1aRH+jUE0JNXFgiQ=";
query-engine-hash = "sha256-TjJp72T9nmJcIrMLUIpnapzNlRyVpGp/jGaSuJ0nUDI=";
libquery-engine-hash = "sha256-cerpi9y9w6Fn1meXuj2VDRdIQz/MZvrQ7LZKa0Z70yM=";
schema-engine-hash = "sha256-tfR5B8s5GfmeE1kFlmYyxS7Kw1ELShBKsf+i5MmS+/o=";
};
aarch64-darwin = {
prisma-fmt-hash = "sha256-UPig7U2zXOccalIUE0j07xJdmqAUJ7cpXFTo+2Gbsc8=";
query-engine-hash = "sha256-ihP1BEAvXQ+5XXHEXCYAVTnuETpfxmdtsIGRTljKtS0=";
Expand Down

0 comments on commit 0d4f9a4

Please sign in to comment.