[fine_tuning] Make it work with ilab training #6033
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
# Ensure Ansible 'default' files match the Python entrypoint | |
name: Ansible defaults match | |
on: | |
# Triggers the workflow on push or pull request events but only for the main branch | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
schedule: | |
- cron: '0 */8 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: ./.github/steps/prepare_minimal_ubuntu_image | |
- name: "Ensure that Ansible 'default' files match the Python entrypoint" | |
run: | | |
./run_toolbox.py repo generate_ansible_default_settings | |
- name: Show the difference between the commited files and the regenerated Ansible files | |
run: | | |
git diff | |
- name: "Ensure that there is no missing Ansible documentation" | |
run: | | |
! grep 'Missing documentation' . -R --include 'config.yml' | |
- name: Fail the test if there is a mismatch between the roles defaults and the Python entrypoints | |
run: | | |
changes=$(git diff | wc -l) | |
if [ "$changes" -ne "0" ]; then | |
echo " | |
There is a mismatch between the roles | |
defaults and the Python entrypoints. | |
Make sure you run: | |
./run_toolbox.py repo generate_ansible_default_settings | |
When making changes to the Python entrypoints. | |
" | |
exit 1 | |
fi |