mirror of
https://github.com/fluxcd/flux2.git
synced 2026-02-22 07:31:47 +00:00
Split e2e tests per command
This commit is contained in:
parent
d6d7bc329a
commit
e92b4401e8
1 changed files with 9 additions and 1 deletions
10
.github/workflows/e2e.yaml
vendored
10
.github/workflows/e2e.yaml
vendored
|
|
@ -37,12 +37,20 @@ jobs:
|
||||||
fi
|
fi
|
||||||
- name: Build
|
- name: Build
|
||||||
run: sudo go build -o ./bin/tk ./cmd/tk
|
run: sudo go build -o ./bin/tk ./cmd/tk
|
||||||
- name: Run integration tests
|
- name: Run check e2e tests
|
||||||
run: |
|
run: |
|
||||||
./bin/tk check
|
./bin/tk check
|
||||||
|
- name: Run install version e2e tests
|
||||||
|
run: |
|
||||||
./bin/tk install --version=master --namespace=test --verbose
|
./bin/tk install --version=master --namespace=test --verbose
|
||||||
|
- name: Run uninstall e2e tests
|
||||||
|
run: |
|
||||||
./bin/tk uninstall --namespace=test --crds --silent
|
./bin/tk uninstall --namespace=test --crds --silent
|
||||||
|
- name: Run dev install e2e tests
|
||||||
|
run: |
|
||||||
./bin/tk install --manifests ./manifests/install/
|
./bin/tk install --manifests ./manifests/install/
|
||||||
|
- name: Run create source e2e tests
|
||||||
|
run: |
|
||||||
./bin/tk create source podinfo --git-url https://github.com/stefanprodan/podinfo-deploy --git-semver=">=0.0.1-rc.1 <0.1.0"
|
./bin/tk create source podinfo --git-url https://github.com/stefanprodan/podinfo-deploy --git-semver=">=0.0.1-rc.1 <0.1.0"
|
||||||
- name: Debug failure
|
- name: Debug failure
|
||||||
if: failure()
|
if: failure()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue