File tree Expand file tree Collapse file tree 3 files changed +25
-4
lines changed Expand file tree Collapse file tree 3 files changed +25
-4
lines changed Original file line number Diff line number Diff line change @@ -18,10 +18,21 @@ jobs:
1818 runs-on : self-hosted
1919
2020 steps :
21+ - name : check network
22+ run : |
23+ ip a
24+ ping -c 3 192.168.10.1
25+ ping -c 3 192.168.4.1
26+ ping -c 3 1.1.1.1
27+
2128 - name : Checkout repository and submodules
2229 uses : actions/checkout@v2
2330 with :
2431 submodules : ' recursive'
32+ fetch-depth : 0
33+
34+ - name : Fetch develop branch
35+ run : git fetch origin develop
2536
2637 - name : Set up Python
2738 uses : actions/setup-python@v2
Original file line number Diff line number Diff line change 77SCRIPT_DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
88
99echo " Comparing $( git rev-parse HEAD) with develop branch. Changed files:"
10- git diff --name-only origin develop
10+ git diff --name-only origin/ develop
1111
12- mapfile -t commands < <( ${SCRIPT_DIR} /regression-scope/osfv_regression_scope.py commands --compare_to develop)
12+ mapfile -t commands < <( ${SCRIPT_DIR} /regression-scope/osfv_regression_scope.py commands --compare_to origin/develop)
13+ echo " Commands to run:"
14+ echo " ${commands[@]} "
15+ printf " \n"
1316
1417if [[ ${# commands[@]} -eq 0 ]]; then
15- echo " No tests required to run for these changes. Exiting."
16- exit 0
18+ echo " No tests required to run for these changes."
1719fi
1820
1921pids=()
Original file line number Diff line number Diff line change 77 {
88 "env_vars" : {
99 "RTE_IP" : " 192.168.10.199" ,
10+ "SONOFF_IP" : " 192.168.10.169" ,
11+ "PIKVM_IP" : " 192.168.10.16" ,
12+ "SNIPEIT_NO" : " true" ,
1013 "CONFIG" : " msi-pro-z690-a-wifi-ddr4"
1114 },
1215 "files" : {
1619 {
1720 "env_vars" : {
1821 "RTE_IP" : " 192.168.10.171" ,
22+ "SNIPEIT_NO" : " true" ,
1923 "CONFIG" : " pcengines-apu3"
2024 },
2125 "files" : {
3135 {
3236 "env_vars" : {
3337 "RTE_IP" : " 192.168.10.199" ,
38+ "SNIPEIT_NO" : " true" ,
39+ "SONOFF_IP" : " 192.168.10.169" ,
40+ "PIKVM_IP" : " 192.168.10.16" ,
3441 "CONFIG" : " msi-pro-z690-a-wifi-ddr4"
3542 },
3643 "files" : {
4148 {
4249 "env_vars" : {
4350 "RTE_IP" : " 192.168.10.171" ,
51+ "SNIPEIT_NO" : " true" ,
4452 "CONFIG" : " pcengines-apu3"
4553 },
4654 "files" : {
You can’t perform that action at this time.
0 commit comments