Add a build of compare and foreign document test without tracing.

This commit is contained in:
Tom Alexander 2023-10-14 19:30:04 -04:00
parent d2d8c1ffcf
commit 17c2e9fefe
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
2 changed files with 22 additions and 1 deletions

View File

@ -152,6 +152,26 @@ spec:
value: ["--no-default-features", "--features", "tracing,compare"]
- name: docker-image
value: "$(params.image-name):$(tasks.fetch-repository.results.commit)"
- name: run-image-compare-foreign
taskRef:
name: run-docker-image
workspaces:
- name: source
workspace: git-source
- name: cargo-cache
workspace: cargo-cache
runAfter:
- run-image-tracing-compare
params:
- name: args
value:
[
"--no-default-features",
"--features",
"compare,foreign_document_test",
]
- name: docker-image
value: "$(params.image-name):$(tasks.fetch-repository.results.commit)"
- name: run-image-all
taskRef:
name: run-docker-image
@ -161,7 +181,7 @@ spec:
- name: cargo-cache
workspace: cargo-cache
runAfter:
- run-image-default
- run-image-compare-foreign
params:
- name: args
value:

View File

@ -52,6 +52,7 @@ buildtest:
> cargo build --no-default-features --features compare
> cargo build --no-default-features --features tracing
> cargo build --no-default-features --features compare,tracing
> cargo build --no-default-features --features compare,foreign_document_test
> cargo build --no-default-features --features compare,tracing,foreign_document_test
.PHONY: foreign_document_test