-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create cmake workflows Closes #19 * Add CI workflow presets * Use CMakePreset workflows * Try to get a ninja * Try harder * Restore JUnit format * Try forcing cl.exe usage on windows * Update build-and-test.yml * Revert "Try forcing cl.exe usage on windows" This reverts commit c20f233. * The error message smells like build-type selection bugs in qt * Enter-VsDevShell defaults to x86 [...] * Setup configuration for testPresets * Print DevShells * Introduce c++20 dependency * Try merging the configure and build workflows * Merge the test job, too * Add ninjamulti generator and fix ninja to be ninjasingle * Update readme with new instructions * Use free runners. The big ones are only needed to seed nuget. * Get rid of the unused shell scripts * Revert "Use free runners. The big ones are only needed to seed nuget." This reverts commit 511cade. * [skip ci] Add Unix Makefile presets and reorder the file * Add make flows * Add visual studio 2022 project file CI runs * Build only the more common presets on pull requests
- Loading branch information
1 parent
cf1d642
commit 4b9b69b
Showing
8 changed files
with
715 additions
and
110 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,194 @@ | ||
name: All Presets | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
workflow_dispatch: | ||
|
||
env: | ||
VCPKG_BINARY_SOURCES: clear;nuget,GitHub,readwrite;nugettimeout,3600 | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
generator: ['ninja', 'ninjamulti'] | ||
vcpkg_target_triplet: ['x64-windows', 'x64-windows-static', 'x64-linux'] | ||
build_type: ['debug', 'release'] | ||
include: | ||
- vcpkg_target_triplet: 'x64-linux' | ||
mono: 'mono' | ||
os: 'ubuntu-22.04' | ||
- vcpkg_target_triplet: 'x64-windows' | ||
mono: '' | ||
os: 'windows-2022' | ||
VsDevShellArch: 'amd64' | ||
- vcpkg_target_triplet: 'x64-windows-static' | ||
mono: '' | ||
os: 'windows-2022' | ||
VsDevShellArch: 'amd64' | ||
|
||
- generator: 'make' | ||
vcpkg_target_triplet: 'x64-linux' | ||
build_type: 'debug' | ||
mono: 'mono' | ||
os: 'ubuntu-22.04' | ||
- generator: 'make' | ||
vcpkg_target_triplet: 'x64-linux' | ||
build_type: 'release' | ||
mono: 'mono' | ||
os: 'ubuntu-22.04' | ||
- generator: 'vs2022' | ||
vcpkg_target_triplet: 'x64-windows' | ||
build_type: 'debug' | ||
mono: '' | ||
os: 'windows-2022' | ||
VsDevShellArch: 'amd64' | ||
- generator: 'vs2022' | ||
vcpkg_target_triplet: 'x64-windows' | ||
build_type: 'release' | ||
mono: '' | ||
os: 'windows-2022' | ||
VsDevShellArch: 'amd64' | ||
- generator: 'vs2022' | ||
vcpkg_target_triplet: 'x64-windows-static' | ||
build_type: 'debug' | ||
mono: '' | ||
os: 'windows-2022' | ||
VsDevShellArch: 'amd64' | ||
- generator: 'vs2022' | ||
vcpkg_target_triplet: 'x64-windows-static' | ||
build_type: 'release' | ||
mono: '' | ||
os: 'windows-2022' | ||
VsDevShellArch: 'amd64' | ||
|
||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
runs-on: ${{ matrix.os }}-8-cores | ||
|
||
env: | ||
VCPKG_TARGET_TRIPLET: ${{ matrix.vcpkg_target_triplet }} | ||
|
||
steps: | ||
- name: Update ubuntu repository | ||
if: ${{ matrix.os == 'ubuntu-22.04' }} | ||
shell: bash | ||
run: sudo apt-get update | ||
|
||
- name: Install ubuntu icu dependencies | ||
if: ${{ matrix.os == 'ubuntu-22.04' }} | ||
shell: bash | ||
run: sudo apt-get install autoconf-archive | ||
|
||
- name: Install ubuntu qtbase dependencies (documented) | ||
if: ${{ matrix.os == 'ubuntu-22.04' }} | ||
shell: bash | ||
run: sudo apt-get install '^libxcb.*-dev' libx11-xcb-dev libglu1-mesa-dev libxrender-dev libxi-dev libxkbcommon-dev libxkbcommon-x11-dev | ||
|
||
- name: Install ubuntu qtbase dependencies (undocumented) | ||
if: ${{ matrix.os == 'ubuntu-22.04' }} | ||
shell: bash | ||
run: sudo apt-get install libgl1-mesa-dev mesa-common-dev | ||
|
||
- name: Install ubuntu Ninja | ||
if: ${{ matrix.os == 'ubuntu-22.04' }} | ||
shell: bash | ||
run: sudo sudo apt-get install ninja-build | ||
|
||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: 'recursive' | ||
|
||
- name: Bootstrap VCPKG | ||
shell: bash | ||
run: ./vcpkg/bootstrap-vcpkg.sh | ||
|
||
- name: Setup NuGet | ||
shell: bash | ||
run: | | ||
${{matrix.mono}} $((./vcpkg/vcpkg fetch nuget) | tail -n 1) sources add \ | ||
-source "https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json" \ | ||
-storepasswordincleartext \ | ||
-name "GitHub" \ | ||
-username "${{ github.repository_owner }}" \ | ||
-password "${{ secrets.GITHUB_TOKEN }}" | ||
${{matrix.mono}} $((./vcpkg/vcpkg fetch nuget) | tail -n 1) setapikey "${{ secrets.GITHUB_TOKEN }}" \ | ||
-source "https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json" | ||
${{matrix.mono}} $((./vcpkg/vcpkg fetch nuget) | tail -n 1) sources | ||
- name: Print VsDevShells | ||
if: ${{ matrix.os == 'windows-2022' }} | ||
shell: pwsh | ||
run: | | ||
& "${env:ProgramFiles(x86)}/Microsoft Visual Studio/Installer/vswhere.exe" -requires "Microsoft.VisualStudio.Component.Windows11SDK.*" | ||
- name: CMake Workflow (VsDevShell) | ||
if: ${{ matrix.os == 'windows-2022' }} | ||
shell: pwsh | ||
run: | | ||
$vsInstallationPath=(& "${env:ProgramFiles(x86)}/Microsoft Visual Studio/Installer/vswhere.exe" -requires "Microsoft.VisualStudio.Component.Windows11SDK.*" -property "installationPath") | ||
Import-Module "${vsInstallationPath}/Common7/Tools/Microsoft.VisualStudio.DevShell.dll" | ||
# invoking vcvarsall leaves the shell in another directory... | ||
pushd . | ||
Enter-VsDevShell -VsInstallPath ${vsInstallationPath} -Arch ${{ matrix.VsDevShellArch }} | ||
popd | ||
cmake --preset ci-${{ matrix.generator }}-${{ matrix.vcpkg_target_triplet }}-${{ matrix.build_type }} | ||
cmake --build --preset ci-${{ matrix.generator }}-${{ matrix.vcpkg_target_triplet }}-${{ matrix.build_type }} | ||
ctest --preset ci-${{ matrix.generator }}-${{ matrix.vcpkg_target_triplet }}-${{ matrix.build_type }} | ||
- name: CMake Workflow (non VsDevShell) | ||
if: ${{ matrix.os != 'windows-2022' }} | ||
shell: pwsh | ||
run: | | ||
cmake --preset ci-${{ matrix.generator }}-${{ matrix.vcpkg_target_triplet }}-${{ matrix.build_type }} | ||
cmake --build --preset ci-${{ matrix.generator }}-${{ matrix.vcpkg_target_triplet }}-${{ matrix.build_type }} | ||
ctest --preset ci-${{ matrix.generator }}-${{ matrix.vcpkg_target_triplet }}-${{ matrix.build_type }} | ||
- name: Archive VCPKG Log Files | ||
if: always() | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: buildlogs | ||
path: | | ||
vcpkg/buildtrees/*/*.txt | ||
vcpkg/buildtrees/*/*.log | ||
- name: Create Test Result Artifact | ||
if: always() | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: Test Results (${{ matrix.vcpkg_target_triplet }}) | ||
path: | | ||
build/*.xml | ||
publish-teshresults: | ||
name: Publish Test Results | ||
needs: build | ||
if: > | ||
always() && | ||
github.event.sender.login != 'dependabot[bot]' && | ||
( github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository ) | ||
runs-on: ubuntu-latest | ||
permissions: | ||
checks: write | ||
pull-requests: write | ||
|
||
steps: | ||
- name: Download Artifacts | ||
uses: actions/download-artifact@v3 | ||
with: | ||
path: artifacts | ||
|
||
- name: Publish Test Results | ||
uses: EnricoMi/publish-unit-test-result-action@v2 | ||
if: always() | ||
with: | ||
files: | | ||
artifacts/**/*.xml |
This file contains 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
This file contains 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
Oops, something went wrong.