Commit c01b77b4 authored by Joshua Gutow's avatar Joshua Gutow

CI: Fix proxyd store tests

parent e4de5602
...@@ -882,6 +882,7 @@ jobs: ...@@ -882,6 +882,7 @@ jobs:
default: this-package-does-not-exist default: this-package-does-not-exist
docker: docker:
- image: <<pipeline.parameters.ci_builder_image>> - image: <<pipeline.parameters.ci_builder_image>>
resource_class: medium
steps: steps:
- checkout - checkout
- check-changed: - check-changed:
...@@ -890,14 +891,14 @@ jobs: ...@@ -890,14 +891,14 @@ jobs:
name: Lint name: Lint
command: make lint command: make lint
working_directory: <<parameters.working_directory>> working_directory: <<parameters.working_directory>>
- store_test_results:
path: /test-results
- run: - run:
name: Test name: Test
command: | command: |
mkdir -p /test-results mkdir -p /test-results
gotestsum --junitfile /test-results/tests.xml gotestsum --format=standard-verbose --junitfile /test-results/tests.xml -- -parallel=2
working_directory: <<parameters.working_directory>> working_directory: <<parameters.working_directory>>
- store_test_results:
path: /test-results
- when: - when:
condition: condition:
equal: [ true, <<parameters.build>> ] equal: [ true, <<parameters.build>> ]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment