Skip to content

add link_with in add_project_dependencies #156

add link_with in add_project_dependencies

add link_with in add_project_dependencies #156

Workflow file for this run

# 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