Pacify PPJ teething problems #40
Workflow file for this run
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: CMake | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
release: | |
types: [created] | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: Release | |
PROJECT_NAME: Caprica | |
jobs: | |
build: | |
# The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac. | |
# You can convert this to a matrix build if you need cross-platform coverage. | |
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: lukka/get-cmake@latest | |
- name: Setup vcpkg (without building packages) | |
uses: lukka/run-vcpkg@v11 | |
- name: Run CMake in accordance with CMakePreset.json and run vcpkg | |
uses: lukka/run-cmake@v10 | |
with: | |
cmakeListsTxtPath: '${{ github.workspace }}/CMakeLists.txt' | |
configurePreset: build-release-msvc | |
configurePresetAdditionalArgs: "['-DCMAKE_TOOLCHAIN_FILE:STRING=C:/vcpkg/scripts/buildsystems/vcpkg.cmake']" | |
buildPreset: release-msvc | |
- name: Upload a Build Artifact | |
uses: actions/upload-artifact@v3.1.2 | |
with: | |
# Artifact name | |
name: ${{ env.PROJECT_NAME }} | |
# A file, directory or wildcard pattern that describes what to upload | |
path: build/extern/Caprica/Caprica.exe | |
# The desired behavior if no files are found using the provided path. | |
retention-days: 90 | |
release: | |
if: startsWith(github.ref, 'refs/tags/') | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
needs: build | |
steps: | |
- name: Download artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: ${{ env.PROJECT_NAME }} | |
path: artifacts/${{ env.PROJECT_NAME }} | |
- name: Zip artifacts | |
run: | | |
ls -la artifacts/* | |
cd artifacts/${{ env.PROJECT_NAME }} | |
zip -r9 "../${{ env.PROJECT_NAME }}-${{ github.ref_name }}.zip" * | |
- name: Release | |
uses: nikitalita/action-gh-release@v1.0 | |
with: | |
files: | | |
artifacts/${{ env.PROJECT_NAME }}-${{ github.ref_name }}.zip |