mirror of
https://github.com/Telecominfraproject/wlan-testing.git
synced 2025-11-03 12:27:53 +00:00
fix marker variable reference
This commit is contained in:
10
.github/workflows/regression.yml
vendored
10
.github/workflows/regression.yml
vendored
@@ -83,7 +83,7 @@ jobs:
|
|||||||
|
|
||||||
- name: run dfs tests
|
- name: run dfs tests
|
||||||
uses: ./.github/actions/run-tests
|
uses: ./.github/actions/run-tests
|
||||||
if: "!cancelled() && contains(fromJSON(needs.vars.outputs.markers), 'dfs')"
|
if: "!cancelled() && contains(fromJSON(needs.vars.outputs.regression_markers), 'dfs')"
|
||||||
with:
|
with:
|
||||||
namespace: regression-${{ github.run_id }}-${{ matrix.testbed }}-dfs
|
namespace: regression-${{ github.run_id }}-${{ matrix.testbed }}-dfs
|
||||||
testbed: "${{ matrix.testbed }}"
|
testbed: "${{ matrix.testbed }}"
|
||||||
@@ -94,7 +94,7 @@ jobs:
|
|||||||
|
|
||||||
- name: run multipsk tests
|
- name: run multipsk tests
|
||||||
uses: ./.github/actions/run-tests
|
uses: ./.github/actions/run-tests
|
||||||
if: "!cancelled() && contains(fromJSON(needs.vars.outputs.markers), 'multipsk')"
|
if: "!cancelled() && contains(fromJSON(needs.vars.outputs.regression_markers), 'multipsk')"
|
||||||
with:
|
with:
|
||||||
namespace: regression-${{ github.run_id }}-${{ matrix.testbed }}-multipsk
|
namespace: regression-${{ github.run_id }}-${{ matrix.testbed }}-multipsk
|
||||||
testbed: "${{ matrix.testbed }}"
|
testbed: "${{ matrix.testbed }}"
|
||||||
@@ -105,7 +105,7 @@ jobs:
|
|||||||
|
|
||||||
- name: run rate_limiting tests
|
- name: run rate_limiting tests
|
||||||
uses: ./.github/actions/run-tests
|
uses: ./.github/actions/run-tests
|
||||||
if: "!cancelled() && contains(fromJSON(needs.vars.outputs.markers), 'rate_limiting')"
|
if: "!cancelled() && contains(fromJSON(needs.vars.outputs.regression_markers), 'rate_limiting')"
|
||||||
with:
|
with:
|
||||||
namespace: regression-${{ github.run_id }}-${{ matrix.testbed }}-rate_limiting
|
namespace: regression-${{ github.run_id }}-${{ matrix.testbed }}-rate_limiting
|
||||||
testbed: "${{ matrix.testbed }}"
|
testbed: "${{ matrix.testbed }}"
|
||||||
@@ -116,7 +116,7 @@ jobs:
|
|||||||
|
|
||||||
- name: run rate_limiting_with_radius tests
|
- name: run rate_limiting_with_radius tests
|
||||||
uses: ./.github/actions/run-tests
|
uses: ./.github/actions/run-tests
|
||||||
if: "!cancelled() && contains(fromJSON(needs.vars.outputs.markers), 'rate_limiting_with_radius')"
|
if: "!cancelled() && contains(fromJSON(needs.vars.outputs.regression_markers), 'rate_limiting_with_radius')"
|
||||||
with:
|
with:
|
||||||
namespace: regression-${{ github.run_id }}-${{ matrix.testbed }}-rate_limiting_with_radius
|
namespace: regression-${{ github.run_id }}-${{ matrix.testbed }}-rate_limiting_with_radius
|
||||||
testbed: "${{ matrix.testbed }}"
|
testbed: "${{ matrix.testbed }}"
|
||||||
@@ -127,7 +127,7 @@ jobs:
|
|||||||
|
|
||||||
- name: run dynamic_vlan tests
|
- name: run dynamic_vlan tests
|
||||||
uses: ./.github/actions/run-tests
|
uses: ./.github/actions/run-tests
|
||||||
if: "!cancelled() && contains(fromJSON(needs.vars.outputs.markers), 'dynamic_vlan')"
|
if: "!cancelled() && contains(fromJSON(needs.vars.outputs.regression_markers), 'dynamic_vlan')"
|
||||||
with:
|
with:
|
||||||
namespace: regression-${{ github.run_id }}-${{ matrix.testbed }}-dynamic_vlan
|
namespace: regression-${{ github.run_id }}-${{ matrix.testbed }}-dynamic_vlan
|
||||||
testbed: "${{ matrix.testbed }}"
|
testbed: "${{ matrix.testbed }}"
|
||||||
|
|||||||
Reference in New Issue
Block a user