-
Notifications
You must be signed in to change notification settings - Fork 7
96 lines (83 loc) · 2.67 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# Copyright (c) 2023 Carsten Rudolph
name: Verify Build
on:
workflow_dispatch:
inputs:
uploadArtifacts:
description: 'Upload Artifacts'
required: true
default: 'false'
signArtifacts:
description: 'Attempt Code Sign'
required: true
default: 'false'
pull_request:
branches:
- main
types:
- opened
- reopened
- synchronize
- ready_for_review
env:
vulkanSdkVersion: '1.3.268.0'
jobs:
job:
name: ${{ matrix.os }}-ci
runs-on: ${{ matrix.os }}
if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
strategy:
fail-fast: false
matrix:
os: [ windows-latest ]
include:
- os: windows-latest
triplet: x64-windows
configuration: windows-x64-release
architecture: x64
steps:
- name: Checking out sources
uses: actions/checkout@master
with:
submodules: true
- name: Setup build environment
id: setup-environment
run: |
echo "VCPKG_FEATURE_FLAGS=manifests" >> $env:GITHUB_ENV
- name: Setup Vulkan SDK
uses: humbletim/install-vulkan-sdk@v1.1.1
with:
version: ${{ env.vulkanSdkVersion }}
cache: true
- name: Retrieve latest CMake build
uses: lukka/get-cmake@latest
- name: Restore or build vcpkg
uses: lukka/run-vcpkg@v10
with:
vcpkgDirectory: '${{ github.workspace }}/src/Modules/vcpkg'
vcpkgJsonGlob: '**/vcpkg.json'
- name: Build with CMake and Ninja
id: build-with-cmake
uses: lukka/run-cmake@v10
with:
cmakeListsTxtPath: '${{ github.workspace }}/src/CMakeLists.txt'
configurePreset: '${{ matrix.configuration }}'
buildPreset: '${{ matrix.configuration }}'
- name: Install with CMake
run: |
Set-Location '${{ github.workspace }}/out/build/${{ matrix.configuration }}'
cmake --install .
- name: Sign binaries
if: ${{ github.event.inputs.signArtifacts == 'true' }}
uses: dlemstra/code-sign-action@v1
with:
certificate: '${{ secrets.SIGN_CERTIFICATE_BASE64 }}'
password: '${{ secrets.SIGN_CERTIFICATE_PASSWORD }}'
folder: '${{ github.workspace }}/out/install/'
recursive: true
- name: Upload install artifacts
if: ${{ github.event.inputs.uploadArtifacts == 'true' }}
uses: actions/upload-artifact@v3
with:
name: LiteFX-${{ matrix.triplet }}-install
path: '${{ github.workspace }}/out/install/${{ matrix.configuration }}'