fix: la64 ci (#1134)

Signed-off-by: longjin <longjin@DragonOS.org>
This commit is contained in:
LoGin
2025-04-22 01:35:30 +08:00
committed by GitHub
parent e80796eb82
commit 2c81a9760e
5 changed files with 20 additions and 20 deletions

View File

@ -11,14 +11,14 @@ jobs:
name: Format check ${{ matrix.arch }}
runs-on: ubuntu-latest
continue-on-error: true
container: dragonos/dragonos-dev:v1.10
container: dragonos/dragonos-dev:v1.11
strategy:
matrix:
arch: [x86_64, riscv64, loongarch64]
steps:
- run: echo "Running in dragonos/dragonos-dev:v1.10"
- run: echo "Running in dragonos/dragonos-dev:v1.11"
- uses: actions/checkout@v3
- name: Format check
@ -35,14 +35,14 @@ jobs:
name: Kernel static test ${{ matrix.arch }}
runs-on: ubuntu-latest
continue-on-error: true
container: dragonos/dragonos-dev:v1.10
container: dragonos/dragonos-dev:v1.11
strategy:
matrix:
arch: [x86_64, riscv64, loongarch64]
steps:
- run: echo "Running in dragonos/dragonos-dev:v1.10"
- run: echo "Running in dragonos/dragonos-dev:v1.11"
- uses: actions/checkout@v3
@ -56,7 +56,8 @@ jobs:
build:
name: Build ${{ matrix.arch }}
runs-on: ubuntu-latest
container: dragonos/dragonos-dev:v1.10
container: dragonos/dragonos-dev:v1.11
continue-on-error: true
strategy:
matrix:
include:
@ -72,7 +73,7 @@ jobs:
checkout_params: {}
steps:
- run: echo "Running in dragonos/dragonos-dev:v1.10"
- run: echo "Running in dragonos/dragonos-dev:v1.11"
- uses: actions/checkout@v3
with: ${{ matrix.checkout_params }}
@ -83,8 +84,8 @@ jobs:
HOME: /root
shell: bash -ileo pipefail {0}
run: |
source ~/.bashrc
source ~/.cargo/env
source $HOME/.bashrc
source $HOME/.cargo/env
if [[ "$ARCH" == "x86_64" ]]; then
export DragonOS_GCC=$HOME/opt/dragonos-gcc/gcc-x86_64-unknown-none/bin
fi