Bump src/acquire-core-libs from f634f76
to a82da24
(#20)
#6
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
name: Build | |
on: | |
push: | |
branches: [ "main" ] | |
jobs: | |
windows-build: | |
name: "Build on Windows with Spinnaker SDK" | |
runs-on: | |
- self-hosted | |
- spinnaker | |
- windows | |
permissions: | |
actions: write | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- name: Enable long paths | |
run: | | |
git config --global core.longpaths true | |
shell: pwsh | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Get CMake 3.24 | |
uses: lukka/get-cmake@latest | |
with: | |
useCloudCache: false | |
useLocalCache: true | |
cmakeVersion: 3.24.3 | |
- name: Install MSVC | |
uses: ilammy/msvc-dev-cmd@v1 | |
with: | |
arch: amd64_x86 | |
- name: Package | |
run: | | |
cmake -B ${{github.workspace}}/pack -DCMAKE_BUILD_TYPE=Release -DNOTEST=1 | |
cmake --build ${{github.workspace}}/pack --config Release | |
cpack --config ${{github.workspace}}/pack/CPackConfig.cmake -C Release -G ZIP | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: windows-latest Release binaries | |
path: ${{github.workspace}}/*.zip |