-
Notifications
You must be signed in to change notification settings - Fork 734
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1009 from ywc689/dpdk-24.11-supports
Dpdk 24.11 supports
- Loading branch information
Showing
72 changed files
with
1,620 additions
and
2,738 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: BUILD-LTS | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'DPVS-1.9-LTS' | ||
release: | ||
branches: | ||
- 'DPVS-1.9-LTS' | ||
types: | ||
- published | ||
pull_request: | ||
branches: | ||
- 'DPVS-1.9-LTS' | ||
types: | ||
- labeled | ||
|
||
jobs: | ||
build-basic: | ||
runs-on: self-hosted | ||
env: | ||
PKG_CONFIG_PATH: /data/dpdk/20.11.10/dpdklib/lib64/pkgconfig | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v4 | ||
- name: Build | ||
run: make -j | ||
|
||
build-all: | ||
runs-on: self-hosted | ||
env: | ||
PKG_CONFIG_PATH: /data/dpdk/20.11.10/dpdklib/lib64/pkgconfig | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v4 | ||
- name: Config | ||
run: sed -i 's/=n$/=y/' config.mk | ||
- name: Build | ||
run: make -j |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,44 @@ | ||
name: Build | ||
name: BUILD | ||
|
||
on: | ||
push: | ||
branches: [master, devel, DPVS-1.8-LTS] | ||
branches: | ||
- 'master' | ||
- 'devel' | ||
release: | ||
branches: [master] | ||
types: [published] | ||
branches: | ||
- 'master' | ||
- 'devel' | ||
types: | ||
- published | ||
schedule: | ||
- cron: '30 2 * * 1' | ||
pull_request: | ||
branches: [master, devel, DPVS-1.8-LTS] | ||
types: [labeled] | ||
branches: | ||
- 'master' | ||
- 'devel' | ||
types: | ||
- labeled | ||
|
||
jobs: | ||
build-basic: | ||
runs-on: self-hosted | ||
env: | ||
PKG_CONFIG_PATH: /data/dpdk/dpdklib/lib64/pkgconfig | ||
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true | ||
PKG_CONFIG_PATH: /data/dpdk/24.11/dpdklib/lib64/pkgconfig | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
- name: build | ||
uses: actions/checkout@v4 | ||
- name: Build | ||
run: make -j | ||
|
||
build-all: | ||
runs-on: self-hosted | ||
env: | ||
PKG_CONFIG_PATH: /data/dpdk/dpdklib/lib64/pkgconfig | ||
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true | ||
PKG_CONFIG_PATH: /data/dpdk/24.11/dpdklib/lib64/pkgconfig | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Config | ||
run: sed -i 's/=n$/=y/' config.mk | ||
- name: build | ||
- name: Build | ||
run: make -j |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: RUN-LTS | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'DPVS-1.9-LTS' | ||
release: | ||
branches: | ||
- 'DPVS-1.9-LTS' | ||
types: | ||
- published | ||
pull_request: | ||
types: | ||
- labeled | ||
branches: | ||
- 'DPVS-1.9-LTS' | ||
|
||
jobs: | ||
run-dpvs: | ||
runs-on: self-hosted | ||
env: | ||
PKG_CONFIG_PATH: /data/dpdk/20.11.10/dpdklib/lib64/pkgconfig | ||
#ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v4 | ||
- name: Build | ||
run: make -j | ||
- name: Install | ||
run: make install | ||
- name: Run DPVS | ||
run: sudo dpvsci $(pwd)/bin/dpvs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.