fix(DB/Quest): Hemet Nesingwary flying machine speed and orientation #14910
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: nopch-build | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| concurrency: | |
| group: ${{ github.head_ref }} || concat(${{ github.ref_name }}, ${{ github.workflow }}) | |
| cancel-in-progress: true | |
| permissions: | |
| actions: write | |
| contents: read | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| include: | |
| - os: ubuntu-22.04 | |
| compiler: | |
| CC: clang-15 | |
| CXX: clang++-15 | |
| - os: ubuntu-24.04 | |
| compiler: | |
| CC: clang-18 | |
| CXX: clang++-18 | |
| - os: ubuntu-24.04 | |
| compiler: | |
| CC: gcc-14 | |
| CXX: g++-14 | |
| runs-on: ${{ matrix.os }} | |
| name: ${{ matrix.os }}-${{ matrix.compiler.CC }}-nopch | |
| if: github.repository == 'azerothcore/azerothcore-wotlk' && !github.event.pull_request.draft | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/linux-build | |
| with: | |
| CC: ${{ matrix.compiler.CC }} | |
| CXX: ${{ matrix.compiler.CXX }} | |
| pch: false |