diff options
| author | Yang Liu <liuyang22@iscas.ac.cn> | 2025-07-22 20:37:20 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-22 14:37:20 +0200 |
| commit | 7b755bb6a2a07a2f5c73fd8b35468f7d4172531c (patch) | |
| tree | d4bbfadd12bde0302baaee1f279b7442b2fda93d /.github/workflows | |
| parent | 5f7da532c4ea35e56b2a5839d776e2cd75f34db1 (diff) | |
| download | box64-7b755bb6a2a07a2f5c73fd8b35468f7d4172531c.tar.gz box64-7b755bb6a2a07a2f5c73fd8b35468f7d4172531c.zip | |
[BOX32] Enable personality setting for RV64 and LA64 (#2841)
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/release.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d6b55699..e2471cb2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -249,6 +249,9 @@ jobs: export INTERPRETER=qemu-riscv64-static export QEMU_LD_PREFIX=/usr/riscv64-linux-gnu/ + if [[ ${{ env.BOX64_BOX32 }} == '1' ]]; then + export BOX32_PERSONA32BITS=1 # hack to disable personality setting + fi ctest $CTEST_OPTIONS QEMU_CPU=rv64,v=false BOX64_DYNAREC=0 ctest $CTEST_OPTIONS QEMU_CPU=rv64,v=false,zba=true,zbb=true,zbc=true,zbs=true ctest $CTEST_OPTIONS @@ -269,6 +272,9 @@ jobs: export INTERPRETER=qemu-loongarch64-static export QEMU_LD_PREFIX=/usr/loongarch64-linux-gnu/ + if [[ ${{ env.BOX64_BOX32 }} == '1' ]]; then + export BOX32_PERSONA32BITS=1 # hack to disable personality setting + fi ctest $CTEST_OPTIONS -E nocosim BOX64_DYNAREC_LA64NOEXT=1 ctest $CTEST_OPTIONS -E nocosim BOX64_DYNAREC=0 ctest $CTEST_OPTIONS -E nocosim |