aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorCrazyMax <crazy-max@users.noreply.github.com>2022-06-06 15:36:12 +0200
committerCrazyMax <crazy-max@users.noreply.github.com>2022-06-17 10:59:05 +0200
commitca8b659a06bcf484260248a32f6a87bef6aabc93 (patch)
tree2da7f70f7944a3465df4904e2c855b1b50f8cb56 /.github
parent1887d85e2157d909c53774c7cdfbc745c1298629 (diff)
ci(integration-cli): move integration-cli run to make script
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/windows.yml13
1 files changed, 2 insertions, 11 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index 8fc1a324c7..7d8f4b4f3d 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -390,21 +390,12 @@ jobs:
name: Test integration-cli
if: matrix.test != './...'
run: |
- & gotestsum `
- --format=standard-verbose `
- --jsonfile="./bundles/go-test-report-int-cli-tests.json" `
- --junitfile="./bundles/junit-report-int-cli-tests.xml" `
- --packages="./integration-cli/..." `
- -- `
- "-coverprofile" "./bundles/coverage-report-int-cli-tests.txt" `
- "-covermode" "atomic" `
- "-tags" "autogen" `
- "-test.run" "(${{ matrix.test }})/" `
- "-test.timeout" "200m"
+ .\hack\make.ps1 -TestIntegrationCli
env:
DOCKER_HOST: npipe:////./pipe/docker_engine
GO111MODULE: "off"
TEST_CLIENT_BINARY: ${{ env.BIN_OUT }}\docker
+ INTEGRATION_TESTRUN: ${{ matrix.test }}
-
name: Send to Codecov
if: matrix.os == 'windows-2022'