Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,18 @@ jobs:
- uses: ./.github/actions/enable_python
- uses: ./.github/actions/conan_build
with:
profile: ${{ vars.LINUX_X64_PROFILE }}
profile: linux-gcc12_x64

- uses: ./.github/actions/tests
with:
testdir: build/Release
name: ${{ vars.LINUX_X64_PROFILE }} tests
name: linux-gcc12_x64 tests

- uses: ./.github/actions/deploy
if: inputs.deploy
with:
builddir: build/Release
artifact: ${{ vars.LINUX_X64_PROFILE }}
artifact: linux-gcc12_x64
attestation: ${{inputs.attestation}}

macos-arm-build:
Expand All @@ -62,18 +62,18 @@ jobs:
- uses: ./.github/actions/enable_python_macos
- uses: ./.github/actions/conan_build
with:
profile: ${{vars.MACOS_ARM_PROFILE}}
profile: macos-clang15_arm

- uses: ./.github/actions/tests
with:
testdir: build/Release
name: ${{vars.MACOS_ARM_PROFILE}} tests
name: macos-clang15_arm tests

- uses: ./.github/actions/deploy
if: inputs.deploy
with:
builddir: build/Release
artifact: ${{vars.MACOS_ARM_PROFILE}}
artifact: macos-clang15_arm
attestation: ${{inputs.attestation}}

macos-x64-build:
Expand All @@ -92,18 +92,18 @@ jobs:
- uses: ./.github/actions/enable_python_macos
- uses: ./.github/actions/conan_build
with:
profile: ${{vars.MACOS_X64_PROFILE}}
profile: macos-clang15_x64

- uses: ./.github/actions/tests
with:
testdir: build/Release
name: ${{vars.MACOS_X64_PROFILE}} tests
name: macos-clang15_x64 tests

- uses: ./.github/actions/deploy
if: inputs.deploy
with:
builddir: build/Release
artifact: ${{vars.MACOS_X64_PROFILE}}
artifact: macos-clang15_x64
attestation: ${{inputs.attestation}}

win-x64-build:
Expand All @@ -122,16 +122,16 @@ jobs:
- uses: ./.github/actions/enable_python
- uses: ./.github/actions/conan_build
with:
profile: ${{vars.WIN_X64_PROFILE}}
profile: win-msvc194_x64

- uses: ./.github/actions/tests
with:
testdir: build
name: ${{vars.WIN_X64_PROFILE}} tests
name: win-msvc194_x64 tests

- uses: ./.github/actions/deploy
if: inputs.deploy
with:
builddir: build
artifact: ${{vars.WIN_X64_PROFILE}}
artifact: win-msvc194_x64
attestation: ${{inputs.attestation}}
8 changes: 4 additions & 4 deletions .github/workflows/check_cache.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: ./.github/actions/check_cache
id: check-cache
with:
profile: ${{ vars.LINUX_X64_PROFILE }}
profile: linux-gcc12_x64

macos-arm-check-cache:
runs-on: macos-14
Expand All @@ -32,7 +32,7 @@ jobs:
- uses: ./.github/actions/check_cache
id: check-cache
with:
profile: ${{ vars.MACOS_ARM_PROFILE }}
profile: macos-clang15_arm

macos-x64-check-cache:
runs-on: macos-13
Expand All @@ -43,7 +43,7 @@ jobs:
- uses: ./.github/actions/check_cache
id: check-cache
with:
profile: ${{ vars.MACOS_X64_PROFILE }}
profile: macos-clang15_x64

win-x64-check-cache:
runs-on: windows-2022
Expand All @@ -54,4 +54,4 @@ jobs:
- uses: ./.github/actions/check_cache
id: check-cache
with:
profile: ${{ vars.WIN_X64_PROFILE }}
profile: win-msvc194_x64
8 changes: 4 additions & 4 deletions .github/workflows/make_cache.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: ./.github/actions/enable_python
- uses: ./.github/actions/enable_conan
with:
profile: ${{vars.LINUX_X64_PROFILE}}
profile: linux-gcc12_x64

macos-arm-make-cache:
runs-on: macos-14
Expand All @@ -27,7 +27,7 @@ jobs:
- uses: ./.github/actions/enable_python_macos
- uses: ./.github/actions/enable_conan
with:
profile: ${{vars.MACOS_ARM_PROFILE}}
profile: macos-clang15_arm

macos-x64-make-cache:
runs-on: macos-13
Expand All @@ -38,7 +38,7 @@ jobs:
- uses: ./.github/actions/enable_python_macos
- uses: ./.github/actions/enable_conan
with:
profile: ${{vars.MACOS_X64_PROFILE}}
profile: macos-clang15_x64

win-x64-make-cache:
runs-on: windows-2022
Expand All @@ -49,4 +49,4 @@ jobs:
- uses: ./.github/actions/enable_python
- uses: ./.github/actions/enable_conan
with:
profile: ${{vars.WIN_X64_PROFILE}}
profile: win-msvc194_x64
6 changes: 3 additions & 3 deletions .github/workflows/sign_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,18 @@ jobs:
- uses: ./.github/actions/enable_python
- uses: ./.github/actions/conan_build
with:
profile: ${{vars.WIN_X64_APPONLY_PROFILE}}
profile: win-msvc194_x64_static
args: -o daggy/*:apponly=True

- uses: ./.github/actions/tests
with:
testdir: build
name: ${{vars.WIN_X64_APPONLY_PROFILE}} tests
name: win-msvc194_x64_static tests

- uses: ./.github/actions/deploy_with_sign
with:
builddir: build
artifact: ${{vars.WIN_X64_APPONLY_PROFILE}}
artifact: win-msvc194_x64_static
sign: ${{inputs.sign}}
signeddir: build/signed
token: ${{secrets.SIGNPATH_API_TOKEN}}