mirror of
https://github.com/rust-windowing/winit.git
synced 2026-08-31 22:00:04 -04:00
Merge pull request #243 from tomaka/android-test
Check Android build on travis
This commit is contained in:
23
.circleci/config.yml
Normal file
23
.circleci/config.yml
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
version: 2
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
test:
|
||||||
|
working_directory: ~/tgst
|
||||||
|
docker:
|
||||||
|
- image: tomaka/cargo-apk
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- restore_cache:
|
||||||
|
key: test-cache-{{ checksum "Cargo.toml" }}
|
||||||
|
- run: cargo apk build --example window
|
||||||
|
- save_cache:
|
||||||
|
key: test-cache-{{ checksum "Cargo.toml" }}
|
||||||
|
paths:
|
||||||
|
- target
|
||||||
|
|
||||||
|
workflows:
|
||||||
|
version: 2
|
||||||
|
build-test-and-deploy:
|
||||||
|
jobs:
|
||||||
|
- test
|
||||||
Reference in New Issue
Block a user