Files
basis_universal/appveyor.yml

36 lines
698 B
YAML

---
image:
- macos
- Ubuntu2004
- Visual Studio 2019
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:
# Linux
- path: bin/basisu
# MacOS
- path: bin/basisu
# Windows
- path: bin\$(configuration)\basisu.exe