Update current feature #102
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
# Qserv operator CI workflow | |
--- | |
name: "CI" | |
on: | |
push: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
main: | |
name: Run k8s advanced exercices | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Stop apparmor | |
run: | | |
sudo /etc/init.d/apparmor stop | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: '^1.19.2' | |
- name: Create k8s/kind cluster | |
run: | | |
go install github.com/k8s-school/ktbx@v1.1.1-rc3 | |
ktbx create -c | |
- name: Run test on internals | |
run: | | |
./1_internals/ci.sh | |
- name: Run test on authorization | |
run: | | |
./2_authorization/ci.sh | |
- name: Run test on policies | |
run: | | |
./3_policies/ci.sh | |
- name: Run test on computational resources | |
run: | | |
./4_computational_resources/ci.sh | |
- name: Install prometheus | |
run: | | |
./B_prometheus/install.sh |