winit-sonoma-fix/.circleci/config.yml

24 lines
437 B
YAML
Raw Normal View History

2017-07-25 18:13:45 +10:00
version: 2
jobs:
test:
working_directory: ~/tgst
docker:
- image: tomaka/cargo-apk
steps:
- checkout
- restore_cache:
2017-07-25 18:16:46 +10:00
key: test-cache-{{ checksum "Cargo.toml" }}
2017-07-25 18:13:45 +10:00
- run: cargo apk build --example window
- save_cache:
2017-07-25 18:16:46 +10:00
key: test-cache-{{ checksum "Cargo.toml" }}
2017-07-25 18:13:45 +10:00
paths:
- target
workflows:
version: 2
build-test-and-deploy:
jobs:
- test