add link_with in add_project_dependencies #156
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
# SPDX-FileCopyrightText: Stone Tickle <[email protected]> | |
# SPDX-License-Identifier: GPL-3.0-only | |
name: vs2019 | |
on: | |
push: | |
branches: | |
- master | |
- '[0-9]+.[0-9]+' | |
pull_request: | |
branches: [master] | |
types: [opened, synchronize, reopened] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
arch: | |
- amd64 | |
- amd64_x86 | |
compiler: | |
# TODO: Add clang when bootstrap.bat adds clang support. | |
- msvc | |
name: ${{ matrix.arch }} - ${{ matrix.compiler }} | |
runs-on: windows-2019 | |
defaults: | |
run: | |
shell: cmd | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ilammy/msvc-dev-cmd@v1 | |
with: | |
arch: ${{ matrix.arch }} | |
- name: bootstrap | |
run: > | |
bootstrap.bat build | |
&& build\muon-bootstrap.exe -v setup build | |
&& build\muon-bootstrap.exe -vC build samu | |
- name: test | |
run: > | |
build\muon.exe -vC build test | |
|| exit 0 |