Fix gitserver version (#999) #28
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 (push) | |
on: | |
push: | |
branches: [ "main", "release-*" ] | |
jobs: | |
operator-integration-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-go | |
- uses: ./.github/actions/create-k3d-cluster | |
- name: run test | |
run: | | |
make -C components/operator deploy | |
make -C tests/operator test | |
env: | |
IMG: europe-docker.pkg.dev/kyma-project/prod/serverless-operator:${{ github.sha }} | |
- if: ${{ always() }} | |
uses: ./.github/actions/collect-cluster-info | |
gardener-integration-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-go | |
- name: save service-account | |
shell: bash | |
run: 'echo "$GARDENER_SA" > /tmp/gardener-sa.yaml' | |
env: | |
GARDENER_SA: ${{ secrets.GARDENER_SA }} | |
- name: provision gardener | |
run: make -C hack provision-gardener | |
env: | |
GARDENER_SECRET_NAME: ${{ secrets.GARDENER_SECRET_NAME }} | |
GARDENER_PROJECT: ${{ secrets.GARDENER_PROJECT }} | |
GARDENER_SA_PATH: /tmp/gardener-sa.yaml | |
- name: run test | |
run: | | |
make -C components/operator deploy | |
make -C tests/operator test | |
env: | |
IMG: europe-docker.pkg.dev/kyma-project/prod/serverless-operator:${{ github.sha }} | |
- name: deprovision gardener | |
if: ${{ always() }} | |
run: make -C hack deprovision-gardener | |
env: | |
GARDENER_SA_PATH: /tmp/gardener-sa.yaml | |
serverless-integration-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-go | |
- uses: ./.github/actions/create-k3d-cluster | |
- name: run test | |
run: | | |
make install-serverless-custom-operator | |
make -C tests/serverless serverless-integration serverless-contract-tests | |
make remove-serverless | |
env: | |
IMG: europe-docker.pkg.dev/kyma-project/prod/serverless-operator:${{ github.sha }} | |
git-auth-integration-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-go | |
- uses: ./.github/actions/create-k3d-cluster | |
- name: run tests | |
run: | | |
make install-serverless-custom-operator | |
make -C tests/serverless git-auth-integration | |
make remove-serverless | |
env: | |
APP_TEST_GITHUB_SSH_AUTH_KEY: ${{ secrets.GIT_AUTH_TEST_GITHUB_SSH_KEY }} | |
APP_TEST_AZURE_BASIC_AUTH_USERNAME: ${{ secrets.GIT_AUTH_TEST_AZURE_USERNAME }} | |
APP_TEST_AZURE_BASIC_AUTH_PASSWORD: ${{ secrets.GIT_AUTH_TEST_AZURE_PASSWORD }} | |
IMG: europe-docker.pkg.dev/kyma-project/prod/serverless-operator:${{ github.sha }} |