-
-
Notifications
You must be signed in to change notification settings - Fork 313
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5761 from roc-lang/basic_cli_arm64_test
basic-cli arm64 test
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
on: | ||
workflow_dispatch: | ||
|
||
# this cancels workflows currently in progress if you start a new one | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
test-basic-cli-release-arm64: | ||
runs-on: [self-hosted, Linux, ARM64] | ||
steps: | ||
- name: clone basic-cli repo | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: roc-lang/basic-cli | ||
ref: main | ||
|
||
- name: Run all tests with latest roc nightly + latest basic-cli release | ||
run: | | ||
sed -i 's/x86_64/arm64/g' ./ci/test_latest_release.sh | ||
./ci/test_latest_release.sh |