mirror of
https://github.com/ansible/awx-operator.git
synced 2026-03-26 21:33:14 +00:00
* add noxfile with mkdocs build session * add nox build check * include reusable nox in ci workflow
104 lines
2.8 KiB
YAML
104 lines
2.8 KiB
YAML
---
|
|
|
|
name: CI
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
|
|
jobs:
|
|
molecule:
|
|
runs-on: ubuntu-latest
|
|
name: molecule
|
|
strategy:
|
|
matrix:
|
|
ansible_args:
|
|
- --skip-tags=replicas
|
|
- -t replicas
|
|
env:
|
|
DOCKER_API_VERSION: "1.41"
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.8"
|
|
|
|
- name: Install Dependencies
|
|
run: |
|
|
pip install -r molecule/requirements.txt
|
|
|
|
- name: Install Collections
|
|
run: |
|
|
ansible-galaxy collection install -r molecule/requirements.yml
|
|
|
|
- name: Run Molecule
|
|
env:
|
|
MOLECULE_VERBOSITY: 3
|
|
PY_COLORS: '1'
|
|
ANSIBLE_FORCE_COLOR: '1'
|
|
run: |
|
|
sudo rm -f $(which kustomize)
|
|
make kustomize
|
|
KUSTOMIZE_PATH=$(readlink -f bin/kustomize) molecule test -s kind -- ${{ matrix.ansible_args }}
|
|
helm:
|
|
runs-on: ubuntu-latest
|
|
name: helm
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Create k8s Kind Cluster
|
|
uses: helm/kind-action@v1.8.0
|
|
|
|
- name: Build operator image and load into kind
|
|
run: |
|
|
IMG=awx-operator-ci make docker-build
|
|
kind load docker-image --name chart-testing awx-operator-ci
|
|
|
|
- name: Patch pull policy for tests
|
|
run: |
|
|
kustomize edit add patch --path ../testing/pull_policy/Never.yaml
|
|
working-directory: config/default
|
|
|
|
- name: Build and lint helm chart
|
|
run: |
|
|
IMG=awx-operator-ci make helm-chart
|
|
helm lint ./charts/awx-operator
|
|
|
|
- name: Install kubeval
|
|
run: |
|
|
mkdir tmp && cd tmp
|
|
wget https://github.com/instrumenta/kubeval/releases/latest/download/kubeval-linux-amd64.tar.gz
|
|
tar xf kubeval-linux-amd64.tar.gz
|
|
sudo cp kubeval /usr/local/bin
|
|
working-directory: ./charts
|
|
|
|
- name: Run kubeval
|
|
run: |
|
|
helm template -n awx awx-operator > tmp/test.yaml
|
|
kubeval --strict --force-color --ignore-missing-schemas tmp/test.yaml
|
|
working-directory: ./charts
|
|
|
|
- name: Install helm chart
|
|
run: |
|
|
helm install --wait my-awx-operator --namespace awx --create-namespace ./charts/awx-operator
|
|
no-log:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Check no_log statements
|
|
run: |
|
|
set +e
|
|
no_log=$(grep -nr ' no_log:' roles | grep -v '"{{ no_log }}"')
|
|
if [ -n "${no_log}" ]; then
|
|
echo 'Please update the following no_log statement(s) with the "{{ no_log }}" value'
|
|
echo "${no_log}"
|
|
exit 1
|
|
fi
|
|
nox-sessions:
|
|
uses: ./.github/workflows/reusable-nox.yml
|