Skip to content

Commit

Permalink
ci: disable miri, eco-ci and benchmark check (#8797)
Browse files Browse the repository at this point in the history
* ci: disable miri check

* ci: disable miri check

* ci: disable miri check

* ci: disable miri check
  • Loading branch information
LingyuCoder authored Dec 20, 2024
1 parent 715bccc commit 52c2309
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,9 @@ jobs:
rust_test_miri:
name: Rust test miri
needs: [get-runner-labels, rust_changes]
if: needs.rust_changes.outputs.changed == 'true' && github.ref_name == 'main' && github.repository_owner == 'web-infra-dev'
# TODO: enable it after self hosted runners are ready
# if: needs.rust_changes.outputs.changed == 'true' && github.ref_name == 'main' && github.repository_owner == 'web-infra-dev'
if: false
runs-on: ${{ fromJSON(needs.get-runner-labels.outputs.LINUX_RUNNER_LABELS) }}
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -385,7 +387,9 @@ jobs:
run_benchmark:
name: Run benchmark
runs-on: ubuntu-latest
if: github.ref_name == 'main' && github.repository_owner == 'web-infra-dev'
# TODO: enable it after security tokens are added
# if: github.ref_name == 'main' && github.repository_owner == 'web-infra-dev'
if: false
steps:
- name: Run Benchmark
uses: convictional/[email protected]
Expand All @@ -400,7 +404,9 @@ jobs:
run_ecosystem_ci:
name: Run Ecosystem CI
runs-on: ubuntu-latest
if: github.ref_name == 'main' && github.repository_owner == 'web-infra-dev'
# TODO: enable it after security tokens are added
# if: github.ref_name == 'main' && github.repository_owner == 'web-infra-dev'
if: false
steps:
- name: Run Ecosystem CI
id: eco_ci
Expand Down

0 comments on commit 52c2309

Please sign in to comment.