Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/gerrit-comment-handler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
steps:
- name: Gerrit Checkout VPP
# yamllint disable-line rule:line-length
uses: fdio/vpp/.github/actions/vpp-checkout-gerrit-change@27fc2aa27f57c8f7055e8f1b6e5a9f41b0315873
uses: fdio/vpp/.github/actions/vpp-checkout-gerrit-change@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
WORKSPACE: ${{ env.WORKSPACE }}
GERRIT_BRANCH: ${{ env.GERRIT_BRANCH }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gerrit-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
id: checkout-vpp
continue-on-error: true
# yamllint disable-line rule:line-length
uses: fdio/vpp/.github/actions/vpp-checkout-gerrit-change@27fc2aa27f57c8f7055e8f1b6e5a9f41b0315873
uses: fdio/vpp/.github/actions/vpp-checkout-gerrit-change@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
WORKSPACE: ${{ env.WORKSPACE }}
GERRIT_BRANCH: ${{ env.GERRIT_BRANCH }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gerrit-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ jobs:
id: checkout-vpp
continue-on-error: true
# yamllint disable-line rule:line-length
uses: fdio/vpp/.github/actions/vpp-checkout-gerrit-change@27fc2aa27f57c8f7055e8f1b6e5a9f41b0315873
uses: fdio/vpp/.github/actions/vpp-checkout-gerrit-change@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
WORKSPACE: ${{ env.WORKSPACE }}
GERRIT_BRANCH: ${{ env.GERRIT_BRANCH }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/periodic-vpp-verify-cov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:

- name: Install VPP dependencies
# yamllint disable-line rule:line-length
uses: fdio/vpp/.github/actions/vpp-install-deps@27fc2aa27f57c8f7055e8f1b6e5a9f41b0315873
uses: fdio/vpp/.github/actions/vpp-install-deps@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
LOG_DIR: ${{ env.LOG_DIR }}
WORKSPACE: ${{ env.WORKSPACE }}
Expand All @@ -116,15 +116,15 @@ jobs:

- name: Setup Docker VPP Runtime Environment for 'make test'
# yamllint disable-line rule:line-length
uses: fdio/vpp/.github/actions/vpp-docker-runtime-setup@27fc2aa27f57c8f7055e8f1b6e5a9f41b0315873
uses: fdio/vpp/.github/actions/vpp-docker-runtime-setup@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
LOG_DIR: ${{ env.LOG_DIR }}
WORKSPACE: ${{ env.WORKSPACE }}
SHM_SIZE: ${{ env.SHM_SIZE }}
TUI_LINE: ${{ env.TUI_LINE }}

- name: Start Docker Daemon
uses: fdio/vpp/.github/actions/vpp-start-docker@f9e0f384d665800c8e580da853e26558dd6d2668
uses: fdio/vpp/.github/actions/vpp-start-docker@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
START_DOCKER_SCRIPT: start-docker.sh
TUI_LINE: ${{ env.TUI_LINE }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/periodic-vpp-verify-dpdk-rdma-ver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:

- name: Install VPP dependencies
# yamllint disable-line rule:line-length
uses: fdio/vpp/.github/actions/vpp-install-deps@27fc2aa27f57c8f7055e8f1b6e5a9f41b0315873
uses: fdio/vpp/.github/actions/vpp-install-deps@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
LOG_DIR: ${{ env.LOG_DIR }}
WORKSPACE: ${{ env.WORKSPACE }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/periodic-vpp-verify-hst.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:

- name: Install VPP dependencies
# yamllint disable-line rule:line-length
uses: fdio/vpp/.github/actions/vpp-install-deps@27fc2aa27f57c8f7055e8f1b6e5a9f41b0315873
uses: fdio/vpp/.github/actions/vpp-install-deps@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
LOG_DIR: ${{ env.LOG_DIR }}
WORKSPACE: ${{ env.WORKSPACE }}
Expand All @@ -131,7 +131,7 @@ jobs:

- name: HST VPP Build
# yamllint disable-line rule:line-length
uses: fdio/vpp/.github/actions/vpp-build@43b0339292476442bd7e2429e2ae1075918d8f83
uses: fdio/vpp/.github/actions/vpp-build@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
LOG_DIR: ${{ env.LOG_DIR }}
WORKSPACE: ${{ env.WORKSPACE }}
Expand All @@ -141,14 +141,14 @@ jobs:
TUI_LINE: ${{ env.TUI_LINE }}

- name: Start Docker Daemon
uses: fdio/vpp/.github/actions/vpp-start-docker@f9e0f384d665800c8e580da853e26558dd6d2668
uses: fdio/vpp/.github/actions/vpp-start-docker@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
START_DOCKER_SCRIPT: start-docker.sh
TUI_LINE: ${{ env.TUI_LINE }}

- name: HST Test VPP
if: success()
uses: fdio/vpp/.github/actions/vpp-hst-test@0b2ad4fb479a2e4b03adb05089895c90f4281a60
uses: fdio/vpp/.github/actions/vpp-hst-test@5957be603df8f47f84ab3142dfef2cac75cbf1e7
timeout-minutes: 90
with:
LOG_DIR: ${{ env.LOG_DIR }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vpp-csit-verify-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:

- name: Checkout VPP Gerrit Change
# yamllint disable-line rule:line-length
uses: fdio/vpp/.github/actions/vpp-checkout-gerrit-change@27fc2aa27f57c8f7055e8f1b6e5a9f41b0315873
uses: fdio/vpp/.github/actions/vpp-checkout-gerrit-change@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
WORKSPACE: ${{ env.WORKSPACE }}
GERRIT_BRANCH: ${{ env.GERRIT_BRANCH }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vpp-merge-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ jobs:

- name: Checkout VPP Gerrit Change
# yamllint disable-line rule:line-length
uses: fdio/vpp/.github/actions/vpp-checkout-gerrit-change@27fc2aa27f57c8f7055e8f1b6e5a9f41b0315873
uses: fdio/vpp/.github/actions/vpp-checkout-gerrit-change@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
WORKSPACE: ${{ env.WORKSPACE }}
GERRIT_BRANCH: ${{ env.GERRIT_BRANCH }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/vpp-merge-maketest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ jobs:

- name: Checkout VPP Gerrit Change
# yamllint disable-line rule:line-length
uses: fdio/vpp/.github/actions/vpp-checkout-gerrit-change@27fc2aa27f57c8f7055e8f1b6e5a9f41b0315873
uses: fdio/vpp/.github/actions/vpp-checkout-gerrit-change@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
WORKSPACE: ${{ env.WORKSPACE }}
GERRIT_BRANCH: ${{ env.GERRIT_BRANCH }}
Expand Down Expand Up @@ -255,7 +255,7 @@ jobs:

- name: Setup Docker VPP Runtime Environment for 'make test'
# yamllint disable-line rule:line-length
uses: fdio/vpp/.github/actions/vpp-docker-runtime-setup@27fc2aa27f57c8f7055e8f1b6e5a9f41b0315873
uses: fdio/vpp/.github/actions/vpp-docker-runtime-setup@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
LOG_DIR: ${{ env.LOG_DIR }}
WORKSPACE: ${{ env.WORKSPACE }}
Expand All @@ -264,7 +264,7 @@ jobs:

- name: VPP Make Test
# yamllint disable-line rule:line-length
uses: fdio/vpp/.github/actions/vpp-make-test@0b2ad4fb479a2e4b03adb05089895c90f4281a60
uses: fdio/vpp/.github/actions/vpp-make-test@5957be603df8f47f84ab3142dfef2cac75cbf1e7
timeout-minutes: 120
with:
LOG_DIR: ${{ env.LOG_DIR }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/vpp-verify-arm-drivers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,15 +170,15 @@ jobs:

- name: Checkout VPP Gerrit Change
# yamllint disable-line rule:line-length
uses: fdio/vpp/.github/actions/vpp-checkout-gerrit-change@27fc2aa27f57c8f7055e8f1b6e5a9f41b0315873
uses: fdio/vpp/.github/actions/vpp-checkout-gerrit-change@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
WORKSPACE: ${{ env.WORKSPACE }}
GERRIT_BRANCH: ${{ env.GERRIT_BRANCH }}
GERRIT_REFSPEC: ${{ env.GERRIT_REFSPEC }}
TUI_LINE: ${{ env.TUI_LINE }}

- name: Install VPP dependencies
uses: fdio/vpp/.github/actions/vpp-install-deps@27fc2aa27f57c8f7055e8f1b6e5a9f41b0315873
uses: fdio/vpp/.github/actions/vpp-install-deps@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
LOG_DIR: ${{ env.LOG_DIR }}
WORKSPACE: ${{ env.WORKSPACE }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vpp-verify-checkstyle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ jobs:

- name: Checkout VPP Gerrit Change
# yamllint disable-line rule:line-length
uses: fdio/vpp/.github/actions/vpp-checkout-gerrit-change@27fc2aa27f57c8f7055e8f1b6e5a9f41b0315873
uses: fdio/vpp/.github/actions/vpp-checkout-gerrit-change@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
WORKSPACE: ${{ env.WORKSPACE }}
GERRIT_BRANCH: ${{ env.GERRIT_BRANCH }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vpp-verify-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ jobs:
uses: fdio/.github/.github/actions/show-nomad-dockerfile@b728d1589228e2891a4241a1bba362d76895c225

- name: Checkout VPP Gerrit Change
uses: fdio/vpp/.github/actions/vpp-checkout-gerrit-change@27fc2aa27f57c8f7055e8f1b6e5a9f41b0315873
uses: fdio/vpp/.github/actions/vpp-checkout-gerrit-change@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
WORKSPACE: ${{ env.WORKSPACE }}
GERRIT_BRANCH: ${{ env.GERRIT_BRANCH }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/vpp-verify-gcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ jobs:

- name: Checkout VPP Gerrit Change
# yamllint disable-line rule:line-length
uses: fdio/vpp/.github/actions/vpp-checkout-gerrit-change@27fc2aa27f57c8f7055e8f1b6e5a9f41b0315873
uses: fdio/vpp/.github/actions/vpp-checkout-gerrit-change@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
WORKSPACE: ${{ env.WORKSPACE }}
GERRIT_BRANCH: ${{ env.GERRIT_BRANCH }}
Expand All @@ -203,7 +203,7 @@ jobs:

- name: Install VPP dependencies
# yamllint disable-line rule:line-length
uses: fdio/vpp/.github/actions/vpp-install-deps@27fc2aa27f57c8f7055e8f1b6e5a9f41b0315873
uses: fdio/vpp/.github/actions/vpp-install-deps@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
WORKSPACE: ${{ env.WORKSPACE }}
TUI_LINE: ${{ env.TUI_LINE }}
Expand All @@ -217,7 +217,7 @@ jobs:

- name: Build VPP with GCC/GCOV
# yamllint disable-line rule:line-length
uses: fdio/vpp/.github/actions/vpp-build@43b0339292476442bd7e2429e2ae1075918d8f83
uses: fdio/vpp/.github/actions/vpp-build@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
WORKSPACE: ${{ env.WORKSPACE }}
MAKE_PARALLEL_JOBS: ${{ env.MAKE_PARALLEL_JOBS }}
Expand All @@ -227,15 +227,15 @@ jobs:

- name: Setup Docker VPP Runtime Environment for 'make test'
# yamllint disable-line rule:line-length
uses: fdio/vpp/.github/actions/vpp-docker-runtime-setup@27fc2aa27f57c8f7055e8f1b6e5a9f41b0315873
uses: fdio/vpp/.github/actions/vpp-docker-runtime-setup@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
WORKSPACE: ${{ env.WORKSPACE }}
SHM_SIZE: ${{ env.SHM_SIZE }}
TUI_LINE: ${{ env.TUI_LINE }}

- name: VPP Make Test with GCC/GCOV
# yamllint disable-line rule:line-length
uses: fdio/vpp/.github/actions/vpp-make-test@0b2ad4fb479a2e4b03adb05089895c90f4281a60
uses: fdio/vpp/.github/actions/vpp-make-test@5957be603df8f47f84ab3142dfef2cac75cbf1e7
timeout-minutes: 120
with:
WORKSPACE: ${{ env.WORKSPACE }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/vpp-verify-hst.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ jobs:

- name: Checkout VPP Gerrit Change
# yamllint disable-line rule:line-length
uses: fdio/vpp/.github/actions/vpp-checkout-gerrit-change@27fc2aa27f57c8f7055e8f1b6e5a9f41b0315873
uses: fdio/vpp/.github/actions/vpp-checkout-gerrit-change@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
LOG_DIR: ${{ env.LOG_DIR }}
WORKSPACE: ${{ env.WORKSPACE }}
Expand All @@ -183,7 +183,7 @@ jobs:

- name: Install VPP dependencies
# yamllint disable-line rule:line-length
uses: fdio/vpp/.github/actions/vpp-install-deps@27fc2aa27f57c8f7055e8f1b6e5a9f41b0315873
uses: fdio/vpp/.github/actions/vpp-install-deps@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
LOG_DIR: ${{ env.LOG_DIR }}
WORKSPACE: ${{ env.WORKSPACE }}
Expand All @@ -199,7 +199,7 @@ jobs:

- name: HST VPP Build
# yamllint disable-line rule:line-length
uses: fdio/vpp/.github/actions/vpp-build@43b0339292476442bd7e2429e2ae1075918d8f83
uses: fdio/vpp/.github/actions/vpp-build@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
LOG_DIR: ${{ env.LOG_DIR }}
WORKSPACE: ${{ env.WORKSPACE }}
Expand All @@ -209,14 +209,14 @@ jobs:
TUI_LINE: ${{ env.TUI_LINE }}

- name: Start Docker Daemon
uses: fdio/vpp/.github/actions/vpp-start-docker@f9e0f384d665800c8e580da853e26558dd6d2668
uses: fdio/vpp/.github/actions/vpp-start-docker@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
START_DOCKER_SCRIPT: start-docker.sh
TUI_LINE: ${{ env.TUI_LINE }}

- name: HST Test VPP
if: success()
uses: fdio/vpp/.github/actions/vpp-hst-test@0b2ad4fb479a2e4b03adb05089895c90f4281a60
uses: fdio/vpp/.github/actions/vpp-hst-test@5957be603df8f47f84ab3142dfef2cac75cbf1e7
timeout-minutes: 90
with:
LOG_DIR: ${{ env.LOG_DIR }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/vpp-verify-maketest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ jobs:

- name: Checkout VPP Gerrit Change
# yamllint disable-line rule:line-length
uses: fdio/vpp/.github/actions/vpp-checkout-gerrit-change@27fc2aa27f57c8f7055e8f1b6e5a9f41b0315873
uses: fdio/vpp/.github/actions/vpp-checkout-gerrit-change@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
WORKSPACE: ${{ env.WORKSPACE }}
GERRIT_BRANCH: ${{ env.GERRIT_BRANCH }}
Expand All @@ -197,7 +197,7 @@ jobs:

- name: Install VPP dependencies
# yamllint disable-line rule:line-length
uses: fdio/vpp/.github/actions/vpp-install-deps@27fc2aa27f57c8f7055e8f1b6e5a9f41b0315873
uses: fdio/vpp/.github/actions/vpp-install-deps@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
LOG_DIR: ${{ env.LOG_DIR }}
WORKSPACE: ${{ env.WORKSPACE }}
Expand All @@ -213,7 +213,7 @@ jobs:

- name: Build VPP
# yamllint disable-line rule:line-length
uses: fdio/vpp/.github/actions/vpp-build@43b0339292476442bd7e2429e2ae1075918d8f83
uses: fdio/vpp/.github/actions/vpp-build@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
LOG_DIR: ${{ env.LOG_DIR }}
WORKSPACE: ${{ env.WORKSPACE }}
Expand All @@ -223,7 +223,7 @@ jobs:

- name: Setup Docker VPP Runtime Environment for 'make test'
# yamllint disable-line rule:line-length
uses: fdio/vpp/.github/actions/vpp-docker-runtime-setup@27fc2aa27f57c8f7055e8f1b6e5a9f41b0315873
uses: fdio/vpp/.github/actions/vpp-docker-runtime-setup@5957be603df8f47f84ab3142dfef2cac75cbf1e7
with:
LOG_DIR: ${{ env.LOG_DIR }}
WORKSPACE: ${{ env.WORKSPACE }}
Expand All @@ -232,7 +232,7 @@ jobs:

- name: VPP Make Test
# yamllint disable-line rule:line-length
uses: fdio/vpp/.github/actions/vpp-make-test@0b2ad4fb479a2e4b03adb05089895c90f4281a60
uses: fdio/vpp/.github/actions/vpp-make-test@5957be603df8f47f84ab3142dfef2cac75cbf1e7
timeout-minutes: 120
with:
LOG_DIR: ${{ env.LOG_DIR }}
Expand Down
Loading