Skip to content

Commit 3646ef3

Browse files
committed
fix(ci): disable debug tests
1 parent 08b2e2c commit 3646ef3

File tree

3 files changed

+1
-30
lines changed

3 files changed

+1
-30
lines changed

.github/workflows/docs-required-override.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -78,16 +78,6 @@ jobs:
7878
steps:
7979
- run: echo "No-op job to trigger the required checks."
8080

81-
override_unit_tests:
82-
name: tests
83-
runs-on: ubuntu-24.04-arm
84-
needs:
85-
- changes-docs
86-
- changes-not-docs
87-
if: ${{ (needs.changes-docs.outputs.changesFound == 'true') && (needs.changes-not-docs.outputs.otherChangesFound == 'false') }}
88-
steps:
89-
- run: echo "No-op job to trigger the required checks."
90-
9181
override_unit_tests_release:
9282
name: tests-release
9383
runs-on: ubuntu-24.04-arm

.github/workflows/unit-tests.yml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -33,25 +33,6 @@ env:
3333
CXX: "sccache clang++"
3434

3535
jobs:
36-
tests:
37-
runs-on: ubuntu-24.04-arm
38-
# Run the job only if the PR is not a draft.
39-
# This is done to limit the runner cost.
40-
if: github.event.pull_request.draft == false
41-
timeout-minutes: 45
42-
steps:
43-
- name: Checkout Sources
44-
uses: actions/checkout@v6
45-
- name: Setup sccache
46-
uses: mozilla-actions/[email protected]
47-
timeout-minutes: ${{ fromJSON(env.CACHE_TIMEOUT_MINUTES) }}
48-
continue-on-error: true
49-
- uses: actions/setup-go@v6
50-
with:
51-
go-version-file: "go.work"
52-
- name: install nextest
53-
uses: taiki-e/install-action@nextest
54-
- run: make test
5536
tests-release:
5637
runs-on: ubuntu-24.04-arm
5738
# Run the job only if the PR is not a draft.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ test-release:
111111
test-all: test test-release
112112

113113
codecov:
114-
cargo llvm-cov --workspace --codecov --output-path lcov.info --ignore-run-fail
114+
cargo llvm-cov --workspace --codecov --output-path lcov.info
115115

116116
# Checks if all headers are present and adds if not
117117
license:

0 commit comments

Comments
 (0)