From 533e770a42798d0af476aabb5e1df5be00a72726 Mon Sep 17 00:00:00 2001 From: Zalathar Date: Wed, 3 May 2023 20:29:29 +1000 Subject: [PATCH 1/2] Run `x86_64-gnu` in PR tests --- .github/workflows/ci.yml | 4 ++++ src/ci/github-actions/ci.yml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dcdaa06caa206..daf467b28ac8c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,6 +62,10 @@ jobs: tidy: false os: ubuntu-20.04-16core-64gb env: {} + - name: x86_64-gnu + tidy: false + os: ubuntu-20.04-8core-32gb + env: {} timeout-minutes: 600 runs-on: "${{ matrix.os }}" steps: diff --git a/src/ci/github-actions/ci.yml b/src/ci/github-actions/ci.yml index 5661adf677625..f6e0dc5eaeb11 100644 --- a/src/ci/github-actions/ci.yml +++ b/src/ci/github-actions/ci.yml @@ -320,6 +320,10 @@ jobs: <<: *job-linux-16c tidy: false + - name: x86_64-gnu + <<: *job-linux-8c + tidy: false + auto: permissions: actions: write # for rust-lang/simpleinfra/github-actions/cancel-outdated-builds From 4f9b9424cfed55a467b19e5752efe43a18735fb5 Mon Sep 17 00:00:00 2001 From: Zalathar Date: Wed, 3 May 2023 21:48:01 +1000 Subject: [PATCH 2/2] Revert the escaping of literal pipe characters --- tests/run-make/coverage-reports/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run-make/coverage-reports/Makefile b/tests/run-make/coverage-reports/Makefile index d4ae03e590a30..d06cd9c6a54f0 100644 --- a/tests/run-make/coverage-reports/Makefile +++ b/tests/run-make/coverage-reports/Makefile @@ -174,7 +174,7 @@ else # files are redundant, so there is no need to generate `expected_*.json` files or # compare actual JSON results.) - $(DIFF) --ignore-matching-lines='^ \| .*::<.*>.*:$$' --ignore-matching-lines='^ \| <.*>::.*:$$' \ + $(DIFF) --ignore-matching-lines='^ | .*::<.*>.*:$$' --ignore-matching-lines='^ | <.*>::.*:$$' \ expected_show_coverage.$@.txt "$(TMPDIR)"/actual_show_coverage.$@.txt || \ ( grep -q '^\/\/ ignore-llvm-cov-show-diffs' $(SOURCEDIR)/$@.rs && \ >&2 echo 'diff failed, but suppressed with `// ignore-llvm-cov-show-diffs` in $(SOURCEDIR)/$@.rs' \