Skip to content

Commit 1141c24

Browse files
committed
Remove unittests from CI and "make all".
With Rust 1.89, cargo test fails to link the test binaries due to missing symbols from NGINX. Disable unit-tests until we have a solution.
1 parent 90cb371 commit 1141c24

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,6 @@ jobs:
103103
if: ${{ !cancelled() && steps.build.outcome == 'success' }}
104104
run: make BUILD=${{ matrix.build }} check
105105

106-
- name: run unit-tests
107-
# always run if build succeeds
108-
if: ${{ !cancelled() && steps.build.outcome == 'success' && runner.os != 'macOS' }}
109-
run: make BUILD=${{ matrix.build }} unittest
110-
111106
- name: run tests
112107
# always run if build succeeds
113108
if: ${{ !cancelled() && steps.build.outcome == 'success' }}

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ TEST_PREREQ = build
3030
.PHONY: all
3131

3232
all: ## Build, lint and test the module
33-
all: build check unittest test
33+
all: build check test
3434

3535

3636
# Conditionals via include, compatible with most implementations of make

0 commit comments

Comments
 (0)