2121 runs-on : ${{ matrix.os }}
2222 strategy :
2323 matrix :
24- os : [ubuntu-latest, ubuntu-20.04, ubuntu-22.04, debian-latest, debian-12, debian-11 ]
24+ os : [ubuntu-latest, ubuntu-20.04, ubuntu-22.04]
2525 steps :
2626 - name : Set environment variable
2727 run : echo "RUNNING_ON_GITHUB=1" >> $GITHUB_ENV
@@ -33,17 +33,17 @@ jobs:
3333 env :
3434 RUNNING_ON_GITHUB_ACTIONS : ${{ env.RUNNING_ON_GITHUB }}
3535
36- # test_ubuntu_latest:
37- # name: test build on ${{ matrix.os }}
38- # runs-on: ubuntu-latest
39- # strategy:
40- # matrix:
41- # os: [ubuntu-latest, ubuntu-20.04, ubuntu-22.04, debian-latest, debian-12, debian-11 ]
42- # steps:
43- # - name: Set environment variable
44- # run: echo "RUNNING_ON_GITHUB=1" >> $GITHUB_ENV
45- # - uses: actions/checkout@v4
46- # - name: do test install in case of merged pull request
47- # run: cd /home/runner/work/firewall-orchestrator/firewall-orchestrator && ansible-playbook -e force_install=true site.yml -K
48- # env:
49- # RUNNING_ON_GITHUB_ACTIONS: ${{ env.RUNNING_ON_GITHUB }}
36+ test_ubuntu_latest :
37+ name : test build on ${{ matrix.os }}
38+ runs-on : ubuntu-latest
39+ strategy :
40+ matrix :
41+ os : [ubuntu-latest, ubuntu-20.04, ubuntu-22.04]
42+ steps :
43+ - name : Set environment variable
44+ run : echo "RUNNING_ON_GITHUB=1" >> $GITHUB_ENV
45+ - uses : actions/checkout@v4
46+ - name : do test install in case of merged pull request
47+ run : cd /home/runner/work/firewall-orchestrator/firewall-orchestrator && ansible-playbook -e force_install=true site.yml -K
48+ env :
49+ RUNNING_ON_GITHUB_ACTIONS : ${{ env.RUNNING_ON_GITHUB }}
0 commit comments