Skip to content

Added upload-artifact/paths-ignore/build_type. #10

Added upload-artifact/paths-ignore/build_type.

Added upload-artifact/paths-ignore/build_type. #10

Workflow file for this run

name: aspia-build
on:
push:
branches:
- master
paths-ignore:
- 'README.md'
- 'LICENSE.md'
- 'CONTRIBUTING.md'
- 'CODE_OF_CONDUCT.md'
- 'doc'
env:
VCPKG_INSTALLED_DIR: ${{ github.workspace }}/builds/ninja-multi-vcpkg-ci/vcpkg_installed
VCPKG_ROOT_PROJECT: ${{ github.workspace }}/vcpkg4aspia
VCPKG_BINARY_SOURCES: 'default,readwrite'
jobs:
build-all-matrix:
name: ${{ matrix.os }}-${{ matrix.triplet }}-build
runs-on: ${{ matrix.os }}
if: github.event_name == 'push'
strategy:
fail-fast: true
matrix:
os: [win11]
arch: [x86, x64]
build_type: [release, debug]
include:
- os: win11
arch: x86
triplet: x86-windows-static
- os: win11
arch: x64
triplet: x64-windows-static
steps:
# Step 1
- name: Checkout
uses: actions/checkout@v2
with:
submodules: false
# Step 2
- name: Checkout Submodule
uses: actions/checkout@v2
with:
repository: dchapyshev/vcpkg4aspia
path: vcpkg4aspia
# Step 3
# On Windows runners, let's ensure to have the Developer Command Prompt
# environment setup correctly. As used here the Developer Command Prompt
# created is targeting x86 and using the default the Windows SDK.
- name: Set MSVC x86/x64 parameters
uses: ilammy/msvc-dev-cmd@v1
if: ${{ runner.os == 'Windows' && matrix.arch != 'amd64_arm64' }}
with:
arch: ${{ matrix.arch }}
toolset: 14.29
# Step 4
- name: Dependencies, Build, Tests (Windows/PowerShell)
if: runner.os == 'Windows'
env:
# This vars used inside CMake
VCPKG_DEFAULT_BINARY_CACHE: C:\vcpkg\bincache-${{ matrix.triplet }}
VCPKG_TRIPLET: ${{ matrix.triplet }}
VCPKG_DEFAULT_HOST_TRIPLET: ${{ matrix.triplet }}
VCPKG_DOWNLOADS: C:\vcpkg\downloads
run: |
# Reuired to prevent override by MSVC for e.g. on Win
$env:VCPKG_ROOT=$env:VCPKG_ROOT_PROJECT
Get-ChildItem env:
if (!$env:VCPKG_TRIPLET) { echo "VCPKG_TRIPLET is empty"; exit 1; }
New-Item -ItemType Directory -Force -Path $env:VCPKG_DEFAULT_BINARY_CACHE
New-Item -ItemType Directory -Force -Path $env:VCPKG_DOWNLOADS
# Build vcpkg dependencies
cmake --preset ninja-multi-vcpkg-ci
# Build project
cmake --build --preset ninja-multi-vcpkg-ci-release
# Run tests
ctest --preset ninja-multi-vcpkg-ci-release
# Step 5
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: Artifacts
path: ${{ github.workspace }}/artifacts/*