Build Project #148
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: Build Project | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches-ignore: | |
| - 'master' | |
| workflow_run: | |
| workflows: Tag and Sync | |
| types: completed | |
| branches: dev | |
| # This is the branch that the original workflow ran on, which is technically dev, due to how | |
| # the "pull_request" trigger works (it works off master correctly for a merged PR but is triggered | |
| # by dev | |
| # No GCC because it's not packaged for 20.04 or 22.04 yet | |
| jobs: | |
| trigger-build: | |
| name: Build Project | |
| if: github.event_name != 'workflow_run' || github.event.workflow_run.conclusion == 'success' | |
| uses: oblivioncth/actions/.github/workflows/build-cxx-project.yml@v1 | |
| secrets: | |
| ffynnon_access: ${{ secrets.OBYBOT_FFYNNON_ACCESS }} | |
| with: | |
| qt_version: 6.8.2 | |
| runs_exclude: > | |
| [ | |
| { "linkage": "shared" }, | |
| { "compiler": "g++-12" }, | |
| { "compiler": "clang++-15" } | |
| ] | |
| runs_include: > | |
| [ | |
| { "os": "ubuntu-22.04", "compiler": "clang++-18", "linkage": "static" } | |
| ] | |
| pre_build_steps: | | |
| - name: Install Clang 18 [Linux] | |
| if: env.run_os == 'ubuntu-22.04' && env.run_compiler == 'clang++-18' | |
| shell: bash | |
| run: | | |
| wget https://apt.llvm.org/llvm.sh | |
| chmod u+x llvm.sh | |
| sudo ./llvm.sh 18 | |