Cosmo/appveyor.yml

29 lines
390 B
YAML
Raw Normal View History

2021-03-16 19:54:44 +00:00
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/
2021-03-16 19:54:44 +00:00
# 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