tg_cpphost: cmd_dynamic: Initial commit of cmd_InteractiveBash #166
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
name: Build tg_cpphost (Windows) | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- sys: mingw32 | |
- sys: mingw64 | |
- sys: ucrt64 | |
- sys: clang64 | |
name: 🚧 ${{ matrix.sys }} | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- name: '🧰 Checkout' | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: 'Setup MSYS2' | |
uses: msys2/setup-msys2@v2 | |
with: | |
msystem: ${{matrix.sys}} | |
update: true | |
install: >- | |
git | |
make | |
pacboy: >- | |
toolchain:p | |
cmake:p | |
ninja:p | |
protobuf:p | |
boost:p | |
- name: 'Setup submodule' | |
run: | | |
git submodule update --init | |
- name: '🚧 Build tg_cpphost' | |
run: | | |
mkdir build | |
cmake -G Ninja -B build -DCMAKE_BUILD_TYPE=Release . | |
cmake --build build |