Skip to content
This repository was archived by the owner on Nov 9, 2019. It is now read-only.

Commit 37b53b5

Browse files
authored
Merge pull request #4 from aktoro-rs/pipelines
Replaced Travis CI with Azure Pipelines.
2 parents ac783e8 + 1648818 commit 37b53b5

File tree

3 files changed

+23
-34
lines changed

3 files changed

+23
-34
lines changed

.travis.yml

Lines changed: 0 additions & 34 deletions
This file was deleted.

ci/azure-pipelines.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
jobs:
2+
- job: test
3+
pool: Default
4+
container: aktoro/archlinux-rust:latest
5+
steps:
6+
- bash: rustup default stable
7+
displayName: 'Setup rust (stable)'
8+
- bash: cargo build --all --all-features --verbose
9+
displayName: 'Build (debug)'
10+
- bash: cargo test --all --all-features --verbose
11+
displayName: 'Test'
12+
- bash: |
13+
rustup component add clippy
14+
cargo clippy --all-target --all-features -- -D warnings
15+
displayName: 'Clippy'

ci/docker/Dockerfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
FROM archlinux/base:latest
2+
MAINTAINER Matthieu Le Brazidec <[email protected]>
3+
4+
# Base
5+
RUN pacman -Sy --noconfirm gcc
6+
7+
# Rust
8+
RUN pacman -Sy --noconfirm rustup

0 commit comments

Comments
 (0)