Merge pull request #2296 from abarz722/develop #1243
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: Build | |
# Controls when the action will run. Triggers the workflow on push or pull request | |
# events but only for the master branch | |
# test change | |
on: | |
push: | |
branches: [ main, develop ] | |
paths-ignore: | |
- 'documentation/**' | |
- 'design/**' | |
pull_request: | |
types: [ ready_for_review, review_requested ] | |
branches: [ main, develop ] | |
paths-ignore: | |
- 'documentation/**' | |
- 'design/**' | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# ubuntu18 was unstable at github (2022-07-06 - 2022-07-11) | |
# test_ubuntu_18: | |
# name: test build on ubuntu_18 | |
# runs-on: ubuntu-18.04 | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: do test install in case of merged pull request | |
# run: cd /home/runner/work/firewall-orchestrator/firewall-orchestrator && ansible-playbook -e run_on_github=yes --skip-tags test site.yml -K | |
test_ubuntu_20: | |
name: test build on ubuntu_20 | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: do test install in case of merged pull request | |
run: cd /home/runner/work/firewall-orchestrator/firewall-orchestrator && ansible-playbook -e run_on_github=yes site.yml -K | |
# run: cd /home/runner/work/firewall-orchestrator/firewall-orchestrator && ansible-playbook -e run_on_github=yes --skip-tags test site.yml -K | |
# test_ubuntu_22: | |
# name: test build on ubuntu_22 | |
# runs-on: ubuntu-22.04 | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: do test install in case of merged pull request | |
# run: cd /home/runner/work/firewall-orchestrator/firewall-orchestrator && ansible-playbook -e run_on_github=yes site.yml -K | |
# run: cd /home/runner/work/firewall-orchestrator/firewall-orchestrator && ansible-playbook -e run_on_github=yes --skip-tags test site.yml -K |