From 4366d1f058ee2c393b5a82365a7387a366a5738f Mon Sep 17 00:00:00 2001 From: Anton-4 <17049058+Anton-4@users.noreply.github.com> Date: Tue, 21 Nov 2023 14:27:23 +0100 Subject: [PATCH] update basic cli arm64 test --- .github/workflows/basic_cli_test_arm64.yml | 10 +++++++--- .github/workflows/basic_webserver_build_release.yml | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/basic_cli_test_arm64.yml b/.github/workflows/basic_cli_test_arm64.yml index fc4ef3d4765..f5300283d4a 100644 --- a/.github/workflows/basic_cli_test_arm64.yml +++ b/.github/workflows/basic_cli_test_arm64.yml @@ -1,5 +1,6 @@ on: workflow_dispatch: + pull_request: # this cancels workflows currently in progress if you start a new one concurrency: @@ -45,10 +46,13 @@ jobs: - name: Remove roc_nightly folder to keep things simple (we'll download it again later) run: rm -rf roc_nightly - - name: Get the examples of the latest basic-cli release - run: ./ci/get_latest_release_examples.sh + - name: Get the repo of the latest basic-cli release + run: | + mkdir basic-cli + cd basic-cli + ./ci/get_latest_release_git_files.sh - name: Run all tests with latest roc nightly and latest basic-cli release run: | sed -i 's/x86_64/arm64/g' ./ci/test_latest_release.sh - ROC=./roc_nightly/roc EXAMPLES_DIR=./latest-release-examples/ ./ci/test_latest_release.sh + ROC=./roc_nightly/roc EXAMPLES_DIR=./basic-cli/examples/ ./ci/test_latest_release.sh diff --git a/.github/workflows/basic_webserver_build_release.yml b/.github/workflows/basic_webserver_build_release.yml index f1cad661702..aac03696b02 100644 --- a/.github/workflows/basic_webserver_build_release.yml +++ b/.github/workflows/basic_webserver_build_release.yml @@ -37,7 +37,7 @@ jobs: - name: Download the previously uploaded roc_nightly archives uses: actions/download-artifact@v3 - - name: build basic-webserver with surgical linker and also with legacy linker + - name: build basic-webserver with legacy linker env: CARGO_BUILD_TARGET: x86_64-unknown-linux-musl run: ./ci/build_basic_webserver.sh linux_x86_64 "--linker legacy"