tests - edit prod workflow

This commit is contained in:
bunkerity 2022-08-24 10:29:13 +02:00
parent d0c245ba83
commit 66029a316c
No known key found for this signature in database
GPG Key ID: 3D80806F12602A7C
2 changed files with 17 additions and 9 deletions

View File

@ -378,8 +378,8 @@ jobs:
# run: ./tests/main.py "docker"
# - name: Run Autoconf tests
# run: ./tests/main.py "autoconf"
- name: Run Swarm tests
run: ./tests/main.py "swarm"
# - name: Run Swarm tests
# run: ./tests/main.py "swarm"
- name: Run Kubernetes tests
run: ./tests/main.py "kubernetes"
- name: Generate Linux packages and build test images

View File

@ -349,17 +349,25 @@ jobs:
# Run tests
- name: Run Docker tests
run: ./tests/docker.sh ${{ env.BUILD_MODE }}
- name: Run autoconf tests
run: ./tests/autoconf.sh ${{ env.BUILD_MODE }}
run: ./tests/main.py "docker"
- name: Run Autoconf tests
run: ./tests/main.py "autoconf"
- name: Run Swarm tests
run: ./tests/swarm.sh ${{ env.BUILD_MODE }}
run: ./tests/main.py "swarm"
- name: Run Kubernetes tests
run: ./tests/kubernetes.sh ${{ env.BUILD_MODE }}
- name: Run Linux tests
run: ./tests/main.py "kubernetes"
- name: Generate Linux packages and build test images
run: ./tests/linux.sh ${{ env.BUILD_MODE }}
- name: Run Linux Ubuntu tests
run: ./tests/main.py "linux" "ubuntu"
- name: Run Linux Debian tests
run: ./tests/main.py "linux" "debian"
- name: Run Linux CentOS tests
run: ./tests/main.py "linux" "centos"
- name: Run Linux Fedora tests
run: ./tests/main.py "linux" "fedora"
# Push to dev registries
# Push to prod registries
push-docker:
needs: [tests, build-bw-386, build-bw-arm]
runs-on: ubuntu-latest