Deduplicate github actions #3996
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Integration Tests | ||
on: | ||
push: | ||
paths-ignore: | ||
- 'docs/**' | ||
branches: | ||
- main | ||
- autoupdate/strict | ||
- autoupdate/moonray | ||
- 'release-[0-9]+.[0-9]+' | ||
- 'autoupdate/release-[0-9]+.[0-9]+-strict' | ||
- 'autoupdate/sync/**' | ||
pull_request: | ||
paths-ignore: | ||
- 'docs/**' | ||
permissions: | ||
contents: read | ||
jobs: | ||
build-snap: | ||
name: Build k8s-snap | ||
uses: ./.github/workflows/build-snap.yaml | ||
id: build-snap | ||
Check failure on line 25 in .github/workflows/integration.yaml GitHub Actions / Integration TestsInvalid workflow file
|
||
test-branches: | ||
name: Test Branch Management | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Setup Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.8' | ||
- name: Install tox | ||
run: pip install tox | ||
- name: Run branch_management tests | ||
run: | | ||
tox -c tests/branch_management -e test | ||
get-e2e-test-tags: | ||
name: "Get e2e test tags" | ||
uses: ./.github/workflows/get-e2e-test-tags.yaml | ||
test-integration: | ||
name: Test ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: ["ubuntu:20.04", "ubuntu:22.04", "ubuntu:24.04"] | ||
needs: build | ||
uses: ./.github/workflows/run-e2e-tests.yaml | ||
with: | ||
arch: amd64 | ||
os: ${{ matrix.os }} | ||
test-tags: ${{ jobs.get-e2e-test-tags.outputs.test-tags}} | ||
artifact: ${{ jobs.build-snap.outputs.snap-artifact}} | ||
security-scan: | ||
name: Security scan | ||
needs: build | ||
uses: ./.github/workflows/security-scan.yaml | ||
with: | ||
artifact: ${{ jobs.build-snap.outputs.snap-artifact}} |