File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -25,10 +25,12 @@ jobs:
2525 matrix :
2626 os : [ubuntu-latest, ubuntu-20.04, ubuntu-22.04]
2727 steps :
28- - uses : actions/checkout@v4
2928 - name : Set environment variable
30- run : echo "RUNNING_ON_GITHUB=${{ env.RUNNING_ON_GITHUB_ACTIONS }}" >> $GITHUB_ACTIONS
29+ run : echo "RUNNING_ON_GITHUB=${{ env.RUNNING_ON_GITHUB_ACTIONS }}" >> $GITHUB_ENV
30+ - uses : actions/checkout@v4
31+ - name : Setup dotnet
32+ uses : actions/setup-dotnet@v4
3133 - name : do test install in case of merged pull request
32- run : cd /home/runner/work/firewall-orchestrator/firewall-orchestrator && ansible-playbook -e force_install=true site.yml -K --extra-vars "RUNNING_ON_GITHUB=${{ env.RUNNING_ON_GITHUB_ACTIONS }}"
34+ run : cd /home/runner/work/firewall-orchestrator/firewall-orchestrator && ansible-playbook -e force_install=true site.yml -K -e "RUNNING_ON_GITHUB=${{ env.RUNNING_ON_GITHUB_ACTIONS }}"
3335 - name : switch to fworch user for c# unit tests
3436 run : sudo su -l fworch && cd ~/test/csharp/FWO.Test && dotnet test
You can’t perform that action at this time.
0 commit comments