Skip to content

Commit

Permalink
Disable aarch64 jobs on forks (#9582)
Browse files Browse the repository at this point in the history
  • Loading branch information
waj committed Jul 8, 2020
1 parent 5b12be9 commit afc214d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on: [push, pull_request]
jobs:
musl-build:
runs-on: [linux, ARM64]
if: github.repository == 'crystal-lang/crystal'
steps:
- name: Download Crystal source
uses: actions/checkout@v2
Expand All @@ -20,6 +21,7 @@ jobs:
musl-test-stdlib:
needs: musl-build
runs-on: [linux, ARM64]
if: github.repository == 'crystal-lang/crystal'
steps:
- name: Download Crystal source
uses: actions/checkout@v2
Expand All @@ -37,6 +39,7 @@ jobs:
musl-test-compiler:
needs: musl-build
runs-on: [linux, ARM64]
if: github.repository == 'crystal-lang/crystal'
steps:
- name: Download Crystal source
uses: actions/checkout@v2
Expand All @@ -53,6 +56,7 @@ jobs:
args: make compiler_spec
gnu-build:
runs-on: [linux, ARM64]
if: github.repository == 'crystal-lang/crystal'
steps:
- name: Download Crystal source
uses: actions/checkout@v2
Expand All @@ -68,6 +72,7 @@ jobs:
gnu-test-stdlib:
needs: gnu-build
runs-on: [linux, ARM64]
if: github.repository == 'crystal-lang/crystal'
steps:
- name: Download Crystal source
uses: actions/checkout@v2
Expand All @@ -85,6 +90,7 @@ jobs:
gnu-test-compiler:
needs: gnu-build
runs-on: [linux, ARM64]
if: github.repository == 'crystal-lang/crystal'
steps:
- name: Download Crystal source
uses: actions/checkout@v2
Expand Down

0 comments on commit afc214d

Please sign in to comment.