From f9690a016156fa260accd81ec1f37f7966233d8f Mon Sep 17 00:00:00 2001 From: mohanson Date: Tue, 19 Sep 2023 13:48:35 +0800 Subject: [PATCH] Using github actions to rewrite: LinuxCIASMChaos --- .github/workflows/develop.yml | 5 ++++- azure-pipelines.yml | 8 -------- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index cf16c2e7..30eb83c1 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -25,6 +25,8 @@ jobs: run: make ci - name: Run ci-asm run: make ci-asm + - name: Run ci-asm-chaos + run: make ci-asm-chaos - name: Run spawn tests in release run: cargo test test_spawn --release --features=asm -- --nocapture @@ -51,5 +53,6 @@ jobs: - name: Run ci-asm shell: pwsh run: | - $env:path+="C:\Users\runneradmin\scoop\shims" + $env:path="C:\Users\runneradmin\scoop\apps\llvm\current;"+$env:path + $env:path="C:\Users\runneradmin\scoop\apps\yasm\current;"+$env:path make ci-asm diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f6e74b50..728e9310 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -11,14 +11,6 @@ variables: jobs: - - job: LinuxCIASMChaos - pool: - vmImage: 'ubuntu-20.04' - steps: - - template: devtools/azure/linux-dependencies.yml - - script: make ci-asm-chaos - displayName: Run ci-asm-chaos - - job: LinuxTestSuite pool: vmImage: 'ubuntu-20.04'