-
-
Notifications
You must be signed in to change notification settings - Fork 618
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: disable miri, eco-ci and benchmark check (#8797)
* ci: disable miri check * ci: disable miri check * ci: disable miri check * ci: disable miri check
- Loading branch information
1 parent
715bccc
commit 52c2309
Showing
1 changed file
with
9 additions
and
3 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 |
---|---|---|
|
@@ -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 | ||
|
@@ -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] | ||
|
@@ -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 | ||
|