From b9136e060d4e7543e41ee8d6b76035ef1d45b4b8 Mon Sep 17 00:00:00 2001 From: Kitzunu <24550914+Kitzunu@users.noreply.github.com> Date: Sat, 20 Jul 2024 20:27:08 +0200 Subject: [PATCH] fix(CI): tools (#19453) * fix(CI): tools * Update tools_build.yml * I dont think this is neccessary. Let's see if CI agrees with me --- .github/actions/linux-build/action.yml | 11 +++--- .github/workflows/tools_build.yml | 46 +++++++++----------------- 2 files changed, 21 insertions(+), 36 deletions(-) diff --git a/.github/actions/linux-build/action.yml b/.github/actions/linux-build/action.yml index 7218239cc23a49..132cfc9fa4aa31 100644 --- a/.github/actions/linux-build/action.yml +++ b/.github/actions/linux-build/action.yml @@ -16,6 +16,11 @@ inputs: description: Flag to install modules or not required: true type: boolean + tools: + default: none + description: Flag to enable tools build + required: false + type: string pch: default: false description: Flag to enable or disable PCH @@ -94,7 +99,7 @@ runs: cmake "$GITHUB_WORKSPACE" \ -DCMAKE_INSTALL_PREFIX="$GITHUB_WORKSPACE/env/dist" \ -DAPPS_BUILD="all" \ - -DTOOLS_BUILD="all" \ + -DTOOLS_BUILD=${{ inputs.tools }} \ -DSCRIPTS="static" \ -DMODULES="static" \ -DWITH_WARNINGS="ON" \ @@ -144,10 +149,6 @@ runs: shell: bash run: sudo systemctl start mysql.service - - name: run dbimport - shell: bash - run: env/dist/bin/dbimport - - name: Dry run authserver shell: bash run: timeout 5m env/dist/bin/authserver --dry-run diff --git a/.github/workflows/tools_build.yml b/.github/workflows/tools_build.yml index 99c69c2c473884..91dd7c4dccdd3b 100644 --- a/.github/workflows/tools_build.yml +++ b/.github/workflows/tools_build.yml @@ -12,40 +12,24 @@ concurrency: jobs: build: strategy: - fail-fast: false + fail-fast: true matrix: - # the result of the matrix will be the combination of all attributes, so we get os*compiler builds - os: [ubuntu-24.04] - compiler: [clang] + include: + - os: ubuntu-24.04 + compiler: + CC: clang-18 + CXX: clang++-18 runs-on: ${{ matrix.os }} - name: ${{ matrix.os }}-${{ matrix.compiler }} - env: - COMPILER: ${{ matrix.compiler }} + name: ${{ matrix.os }}-${{ matrix.compiler.CC }} if: | - github.repository == 'azerothcore/azerothcore-wotlk' && !github.event.pull_request.draft - && ( - contains(github.event.pull_request.labels.*.name, 'run-build') - || github.event.label.name == 'run-build' - ) + github.repository == 'azerothcore/azerothcore-wotlk' + && !github.event.pull_request.draft + && (github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'run-build') || github.event.label.name == 'run-build') steps: - uses: actions/checkout@v4 - - name: Cache - uses: actions/cache@v4 - env: - cache-name: cache-tools + - uses: ./.github/actions/linux-build with: - path: var/ccache - key: ${{ env.cache-name }}-${{ matrix.os }}-${{ matrix.compiler }}-${{ github.ref }}-${{ github.sha }} - restore-keys: | - ${{ env.cache-name }}-${{ matrix.os }}-${{ matrix.compiler }}-${{ github.ref }}- - ${{ env.cache-name }}-${{ matrix.os }}-${{ matrix.compiler }}- - ${{ env.cache-name }}-${{ matrix.os }}- - - name: Configure OS - run: source ./acore.sh install-deps - env: - CONTINUOUS_INTEGRATION: true - - name: Create conf/config.sh - run: source ./apps/ci/ci-conf-tools.sh - - name: Build - run: source ./apps/ci/ci-compile.sh - + CC: ${{ matrix.compiler.CC }} + CXX: ${{ matrix.compiler.CXX }} + tools: all + pch: false