merge operator dockerfiles into one dockerfile #405
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: Serverless verify | |
on: | |
push: | |
branches: [ "main", "release-*" ] | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
- 'examples/**' | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
- converted_to_draft | |
jobs: | |
#pre-serverless-controller-lint | |
lint: | |
if: github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-libgit2 | |
- uses: golangci/golangci-lint-action@v3 | |
with: | |
version: latest | |
working-directory: 'components/serverless' | |
#pre-serverless-controller-unit-test | |
unit-test: | |
if: github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-libgit2 | |
- name: run test | |
run: make -C components/serverless test | |
#pre-serverless-integration-k3s | |
contract-integration-test: | |
if: github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: create single cluster | |
uses: AbsaOSS/k3d-action@4e8b3239042be1dc0aed6c5eb80c13b18200fc79 #v2.4.0 | |
with: | |
cluster-name: "k3dCluster" | |
args: >- | |
--agents 1 | |
--image rancher/k3s:v1.28.6-k3s1 | |
--port 80:80@loadbalancer | |
--port 443:443@loadbalancer | |
--wait | |
- name: deploy serverless | |
run: make -C components/operator/hack/ci run-on-cluster | |
env: | |
IMG: europe-docker.pkg.dev/kyma-project/dev/serverless-operator:PR-${{ github.event.number }} | |
- name: run tests | |
run: make -C tests/serverless serverless-contract-tests | |
#post-serverless-git-auth-integration-k3s | |
git-auth-integration-test: | |
if: github.event_name == 'push' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: create single cluster | |
uses: AbsaOSS/k3d-action@4e8b3239042be1dc0aed6c5eb80c13b18200fc79 #v2.4.0 | |
with: | |
cluster-name: "k3dCluster" | |
args: >- | |
--agents 1 | |
--image rancher/k3s:v1.28.6-k3s1 | |
--port 80:80@loadbalancer | |
--port 443:443@loadbalancer | |
--wait | |
- name: deploy serverless | |
run: make -C components/operator/hack/ci run-on-cluster | |
env: | |
IMG: europe-docker.pkg.dev/kyma-project/prod/serverless-operator:${{ github.sha }} | |
- name: run tests | |
run: make -C tests/serverless git-auth-integration | |
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 }} |