diff options
| author | Yang Liu <liuyang22@iscas.ac.cn> | 2025-04-03 17:18:04 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-03 11:18:04 +0200 |
| commit | 42c241ee4eb91416537aabf3b48c105be3c39221 (patch) | |
| tree | a918b4215e5045809277ad1e63a1eff3c3b8720f /.github/workflows | |
| parent | fb6ee295394431a79e2e62277e698eedccd0e5fa (diff) | |
| download | box64-42c241ee4eb91416537aabf3b48c105be3c39221.tar.gz box64-42c241ee4eb91416537aabf3b48c105be3c39221.zip | |
[CI] Enable cppThreads_32bits in the CI (#2496)
* [CI] Enable cppThreads_32bits in the CI * switch to a specific termux mirror
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/release.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a1569840..39e11288 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -70,8 +70,8 @@ jobs: sudo apt-get -y install git cmake make python3 patchelf if [[ ${{ matrix.platform }} == 'ANDROID' || ${{ matrix.platform }} == 'TERMUX' ]]; then sudo apt-get -y install p7zip - wget https://dl.google.com/android/repository/android-ndk-r26b-linux.zip - unzip android-ndk-r26b-linux.zip + wget -q https://dl.google.com/android/repository/android-ndk-r26b-linux.zip + unzip -qq android-ndk-r26b-linux.zip echo "BOX64_COMPILER=$PWD/android-ndk-r26b/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android31-clang" >> $GITHUB_ENV echo "BOX64_PLATFORM_MARCRO=-DANDROID=1 -DARM_DYNAREC=1 -DBAD_SIGNAL=1" >> $GITHUB_ENV git clone https://github.com/termux/termux-docker.git @@ -88,7 +88,7 @@ jobs: echo "BOX64_COMPILER=aarch64-linux-gnu-gcc" >> $GITHUB_ENV fi if [[ ${{ matrix.platform }} == 'TERMUX' ]]; then - wget https://mirrors.utermux.dev/termux/termux-main/pool/main/liba/libandroid-sysv-semaphore/libandroid-sysv-semaphore_0.1_aarch64.deb + wget https://packages.termux.dev/apt/termux-main/pool/main/liba/libandroid-sysv-semaphore/libandroid-sysv-semaphore_0.1_aarch64.deb 7z x libandroid-sysv-semaphore_0.1_aarch64.deb tar -xf data.tar.xz sudo cp -rf data / |