From a693a8be5f7879e99eb29900bb22c0d790e69560 Mon Sep 17 00:00:00 2001 From: mohanson Date: Tue, 19 Sep 2023 11:04:19 +0800 Subject: [PATCH] Using github actions to rewrite: OSXCI --- .github/workflows/develop.yml | 7 +++++++ azure-pipelines.yml | 8 -------- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index 556db246..ce2015bd 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -27,3 +27,10 @@ jobs: run: make ci-asm - name: Run spawn tests in release run: cargo test test_spawn --release --features=asm -- --nocapture + + macos: + runs-on: macos-latest + steps: + - uses: actions/checkout@v3 + - name: Run ci-asm + run: make ci-asm diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 82a0ef12..9aaa7758 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -167,14 +167,6 @@ jobs: echo "Uploaded code coverage" displayName: Run code coverage - - job: OSXCI - pool: - vmImage: 'macOS-11' - steps: - - template: devtools/azure/osx-dependencies.yml - - script: make ci-asm - displayName: Run unit tests - - job: WinCI pool: vmImage: 'windows-2019'