This repository has been archived by the owner on Oct 17, 2024. It is now read-only.
Add deprecation notice (#155) #215
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: E2E | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
name: E2E | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
kubernetes: ["1.21"] | |
steps: | |
- name: Install python dependencies | |
run: sudo apt-get update && sudo apt-get install -y python3-setuptools python3-pip | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Create KinD cluster | |
run: ./pleasew run //scripts/development/kind:setup -- --kubernetes_version="${{ matrix.kubernetes }}" | |
- name: Deploy Dracon supporting resources | |
run: | | |
./pleasew deploy //scripts/development/k8s:namespace | |
./pleasew deploy //scripts/development/k8s/enricher-db --wait | |
./pleasew deploy //scripts/development/k8s/minio-storage --wait | |
./pleasew deploy //scripts/development/k8s/elasticsearch-kibana --wait | |
- name: Setup and Run Example pipelines | |
run: | | |
./pleasew dracon setup --namespace dracon --pipeline examples/pipelines/golang-project | |
./pleasew dracon run --namespace dracon --pipeline examples/pipelines/golang-project | |
./pleasew dracon setup --namespace dracon --pipeline examples/pipelines/mixed-lang-project | |
./pleasew dracon run --namespace dracon --pipeline examples/pipelines/mixed-lang-project | |
./pleasew dracon setup --namespace dracon --pipeline examples/pipelines/python-project | |
./pleasew dracon run --namespace dracon --pipeline examples/pipelines/python-project | |
./pleasew run //test/e2e:wait_for_pipelineruns | |
- name: Delete KinD cluster | |
run: ./pleasew run //scripts/development/kind:delete |