C++ビルドの調整 #7
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: C++ | |
on: | |
push: | |
branches: ["main", "drecom/develop"] | |
pull_request: | |
branches: ["main", "drecom/develop"] | |
jobs: | |
windows-latest: | |
runs-on: 'windows-latest' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Add MSBuild to PATH | |
uses: microsoft/[email protected] | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Get GoogleTest | |
run: git submodule update --init | |
- name: Build | |
run: | | |
mkdir CPP/build | |
cd CPP/build | |
cmake .. -DBUILD_SHARED_LIBS=ON | |
cmake --build . --config Release --target Clipper2 | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: windows | |
path: CPP/build/Release/Clipper2.dll | |
macos-latest: | |
runs-on: 'macos-latest' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Get GoogleTest | |
run: git submodule update --init | |
- name: Build | |
run: | | |
mkdir CPP/build | |
cd CPP/build | |
cmake .. --DCMAKE_BUILD_TYPE=Release | |
make Clipper2 | |
ls | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: windows | |
path: CPP/build/libClipper2.a |