Updated sanity_tests_devel to run sanity tests only on changed files #80
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: CI Devel | |
on: | |
workflow_dispatch: | |
pull_request: | |
env: | |
NAMESPACE: cisco | |
COLLECTION_NAME: dnac | |
jobs: | |
sanity: | |
name: Sanity (Ⓐ${{ matrix.ansible }}) | |
strategy: | |
matrix: | |
ansible: | |
- devel | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
path: cisco-en-programmability/dnacenter-ansible | |
- name: Create directory | |
run: mkdir -p ./ansible_collections/${{env.NAMESPACE}} | |
- name: Move repository | |
run: mv ./cisco-en-programmability/dnacenter-ansible ./ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}} | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Install ansible-base (${{ matrix.ansible }}) | |
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible }}.tar.gz --disable-pip-version-check | |
- name: Get changed files | |
id: changed_files | |
run: | | |
cd ./ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}} | |
git fetch origin main | |
git diff --name-only origin/main HEAD > changed_files.txt | |
echo "Changed files:" | |
cat changed_files.txt | |
- name: Run sanity tests | |
run: | | |
if [ -s changed_files.txt ]; then | |
changed_files=$(cat changed_files.txt) | |
for file in $changed_files; do | |
ansible-test sanity --docker -v --color yes $file | |
done | |
else | |
echo "No changed files to test." | |
fi | |
working-directory: ./ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}} | |
- name: Install yamllint | |
run: pip install --user yamllint | |
- name: Run yamllint | |
run: | | |
if [ -s changed_files.txt ]; then | |
changed_files=$(cat changed_files.txt) | |
for file in $changed_files; do | |
yamllint -c .yamllint.yml $file | |
done | |
else | |
echo "No changed files to lint." | |
fi | |
working-directory: ./ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}} |