mirror of
https://github.com/BinomialLLC/basis_universal.git
synced 2026-06-08 08:33:53 +00:00
31 lines
666 B
YAML
31 lines
666 B
YAML
image:
|
|
- Visual Studio 2019
|
|
- Ubuntu
|
|
- macos
|
|
|
|
configuration: Release
|
|
|
|
environment:
|
|
APPVEYOR_YML_DISABLE_PS_LINUX: true
|
|
|
|
build_script:
|
|
- ps: |
|
|
New-Item -Path . -Name "build" -ItemType "directory"
|
|
cd build
|
|
cmake --version
|
|
cmake ../ -DCMAKE_BUILD_TYPE:STRING="$env:CONFIGURATION"
|
|
cmake --build . --config $env:CONFIGURATION
|
|
cd ../
|
|
- sh: |
|
|
mkdir build
|
|
cd build
|
|
cmake --version
|
|
cmake ../ -DCMAKE_BUILD_TYPE:STRING="${CONFIGURATION}"
|
|
cmake --build . --config ${CONFIGURATION}
|
|
cd ../
|
|
|
|
artifacts:
|
|
- path: bin\$(configuration)\basisu.exe
|
|
- path: bin/basisu
|
|
- path: bin_osx/basisu
|