Added ability to build static library. #22
Workflow file for this run
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: Windows Build Test | |
on: | |
[pull_request] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- name: Checkout The PR | |
uses: actions/checkout@v2 | |
- name: Install Conda | |
uses: conda-incubator/setup-miniconda@v2 | |
- name: Install PDAL | |
shell: pwsh | |
run: conda install -c conda-forge pdal | |
- name: Build | |
shell: cmd /C call {0} | |
run: | | |
set TOOLCHAIN="" | |
make.bat | |
- name: Test | |
shell: cmd /C call {0} | |
run: | | |
cp build\x64-windows\source\pdal\release\pdalc.dll build\x64-windows\tests\pdal\release | |
cd build\x64-windows\tests\pdal\release | |
test_pdalc | |