Cosmo/appveyor.yml

29 lines
390 B
YAML

version: 'cosmo-0.1.{build}'
# we compile every commit under all branches
#branch:
# only:
# - main
# only run CI if we changed actual code
only_commits:
files:
- src/
# images we're using
image:
- Ubuntu2004
platform:
- x64
install:
- sudo apt install clang cmake -y
build_script:
- cmake . && make
artifacts:
- path: bin
name: ubuntu20_04-bin-x64
type: zip