Skip to content

macOS deployment target. #34

macOS deployment target.

macOS deployment target. #34

Workflow file for this run

name: Build
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
workflow_dispatch:
env:
PRINCIPIA_HEADERS_GLOG: src
PRINCIPIA_MSVC_GLOG: msvc
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
configuration: [Debug, Release]
steps:
- name: Checkout source files
uses: actions/checkout@v3
- name: Initialize build environment
uses: mockingbirdnest/actions/windows/initialize_build@main
with:
configuration: ${{ matrix.configuration }}
- name: Download chromium artifact
uses: dawidd6/action-download-artifact@v2
with:
github_token: ${{ github.token }}
workflow: build.yaml
workflow_conclusion: success
name: chromium
path: ${{ github.workspace }}/../chromium
repo: mockingbirdnest/chromium
- name: Rebuild ${{ matrix.configuration }}
uses: mockingbirdnest/actions/windows/rebuild@main
with:
configuration: ${{ matrix.configuration }}
solution_directory: ${{ env.PRINCIPIA_MSVC_GLOG }}
- name: Upload artifact
uses: mockingbirdnest/actions/windows/upload_artifact@main
with:
name: glog
headers_directory: ${{ env.PRINCIPIA_HEADERS_GLOG }}
solution_directory: ${{ env.PRINCIPIA_MSVC_GLOG }}