From 84bfc70efbe323bc2a12951522f728b35a6ed9db Mon Sep 17 00:00:00 2001 From: Philipp Grulich Date: Wed, 24 Apr 2024 10:11:25 +0200 Subject: [PATCH] update --- .github/workflows/build.yml | 2 +- build_ubuntu-arm64.sh | 2 +- build_ubuntu-x64.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 95bc549..daa59d1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -64,7 +64,7 @@ jobs: runs-on: [self-hosted, linux, ARM64, dep-builder] strategy: matrix: - osversion: [ubuntu-18.04] + osversion: [ubuntu-22.04] steps: - uses: AutoModality/action-clean@v1 - uses: actions/checkout@v2 diff --git a/build_ubuntu-arm64.sh b/build_ubuntu-arm64.sh index 91f46cc..dbf52dc 100755 --- a/build_ubuntu-arm64.sh +++ b/build_ubuntu-arm64.sh @@ -3,7 +3,7 @@ cd /build_dir/llvm-project rm -rf ./build mkdir build -cmake -G Ninja -S llvm -B build -DCMAKE_BUILD_TYPE=DEBUG \ +cmake -G Ninja -S llvm -B build -DCMAKE_BUILD_TYPE=Release \ -DLLVM_ENABLE_PROJECTS="mlir;llvm" \ -DBOOTSTRAP_LLVM_ENABLE_LTO=OFF \ -DLLVM_INCLUDE_EXAMPLES=OFF \ diff --git a/build_ubuntu-x64.sh b/build_ubuntu-x64.sh index 67bea08..b3239b6 100755 --- a/build_ubuntu-x64.sh +++ b/build_ubuntu-x64.sh @@ -3,7 +3,7 @@ cd /build_dir/llvm-project rm -rf ./build mkdir build -cmake -G Ninja -S llvm -B build -DCMAKE_BUILD_TYPE=DEBUG \ +cmake -G Ninja -S llvm -B build -DCMAKE_BUILD_TYPE=Release \ -DLLVM_ENABLE_PROJECTS="mlir;llvm" \ -DBOOTSTRAP_LLVM_ENABLE_LTO=OFF \ -DLLVM_INCLUDE_EXAMPLES=OFF \