Skip to content

Commit

Permalink
ci: add-bpf-linker-to-ci-image (#972)
Browse files Browse the repository at this point in the history
Signed-off-by: longjin <[email protected]>
  • Loading branch information
fslongjin authored Oct 11, 2024
1 parent 53629ac commit 40db1e6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
name: Format check ${{ matrix.arch }}
runs-on: ubuntu-latest
continue-on-error: true
container: dragonos/dragonos-dev:v1.3
container: dragonos/dragonos-dev:v1.4

strategy:
matrix:
arch: [x86_64, riscv64]

steps:
- run: echo "Running in dragonos/dragonos-dev:v1.3"
- run: echo "Running in dragonos/dragonos-dev:v1.4"
- uses: actions/checkout@v3

- name: Format check
Expand All @@ -35,14 +35,14 @@ jobs:
name: Kernel static test ${{ matrix.arch }}
runs-on: ubuntu-latest
continue-on-error: true
container: dragonos/dragonos-dev:v1.3
container: dragonos/dragonos-dev:v1.4

strategy:
matrix:
arch: [x86_64, riscv64]

steps:
- run: echo "Running in dragonos/dragonos-dev:v1.3"
- run: echo "Running in dragonos/dragonos-dev:v1.4"

- uses: actions/checkout@v3

Expand All @@ -56,10 +56,10 @@ jobs:
build-x86_64:

runs-on: ubuntu-latest
container: dragonos/dragonos-dev:v1.3
container: dragonos/dragonos-dev:v1.4

steps:
- run: echo "Running in dragonos/dragonos-dev:v1.3"
- run: echo "Running in dragonos/dragonos-dev:v1.4"

- uses: actions/checkout@v3
- name: build the DragonOS
Expand All @@ -78,10 +78,10 @@ jobs:
build-riscv64:

runs-on: ubuntu-latest
container: dragonos/dragonos-dev:v1.3
container: dragonos/dragonos-dev:v1.4

steps:
- run: echo "Running in dragonos/dragonos-dev:v1.3"
- run: echo "Running in dragonos/dragonos-dev:v1.4"

- uses: actions/checkout@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion tools/BUILD_CONTAINER_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.3
v1.4
1 change: 1 addition & 0 deletions tools/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ rustInstall() {

echo "正在安装DragonOS所需的rust组件...首次安装需要一些时间来更新索引,请耐心等待..."
cargo install cargo-binutils
cargo install bpf-linker
rustup toolchain install nightly-2023-08-15-x86_64-unknown-linux-gnu
rustup toolchain install $RUST_VERSION-x86_64-unknown-linux-gnu
rustup component add rust-src --toolchain $RUST_VERSION-x86_64-unknown-linux-gnu
Expand Down

0 comments on commit 40db1e6

Please sign in to comment.