Ccpansys/solutions e2e testing #6
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 for SAF templates | |
on: | |
pull_request: | |
jobs: | |
check-solution-templates-changes: | |
if: github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
outputs: | |
changed: ${{ steps.check.outputs.has_changes}} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Check for changes | |
id: check | |
run: | | |
CHANGES=$(git diff --name-only ${{ github.event.pull_request.base.sha }} ${{ github.event.pull_request.head.sha }} -- './src/ansys/templates/python/solution' './src/ansys/templates/python/osl_solution') | |
if [ -z "$CHANGES" ]; then | |
echo "has_changes=false" >> $GITHUB_OUTPUT | |
echo "No changes in the solution templates." | |
else | |
echo "has_changes=true" >> $GITHUB_OUTPUT | |
echo "Found changes in the solution templates." | |
fi | |
solutions-e2e-tests: | |
needs: [check-solution-templates-changes] | |
if: | | |
needs.check-solution-templates-changes.outputs.changed == 'true' | |
name: Trigger solutions e2e tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: github workflow dispatch | |
shell: bash | |
run: | | |
curl -L \ | |
-X POST \ | |
-H 'Accept: application/vnd.github+json' \ | |
-H "Authorization: Bearer ${{ secrets.ANSYS_SOLUTIONS_E2E_TESTS }}"\ | |
"https://api.github.com/repos/Solution-Applications/solution-templates-end-to-end-testing/actions/workflows/_ansys-templates-remote-ci.yml/dispatches" \ | |
-d '{"ref":"refs/heads/main", "inputs":{"ansys_templates_sha": "${{ github.event.pull_request.head.sha }}"}}' |