Skip to content

Commit 6c7cdc5

Browse files
committed
publish binaries to github using travis
1 parent 9067708 commit 6c7cdc5

File tree

1 file changed

+46
-12
lines changed

1 file changed

+46
-12
lines changed

.travis.yml

+46-12
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,59 @@
11
language: rust
2+
rust: stable
23

3-
matrix:
4+
stages:
5+
- name: tests
6+
- name: release
7+
if: tag IS present
8+
9+
jobs:
410
include:
5-
- os: linux
6-
rust: stable
7-
env: TARGET=x86_64-unknown-linux-gnu
8-
- os: osx
9-
rust: stable
10-
env: TARGET=x86_64-apple-darwin
11-
# Code checks
12-
- os: linux
13-
rust: stable
11+
- stage: tests
12+
name: 'Code checks'
1413
install:
1514
- rustup component add rustfmt
1615
- rustup component add clippy
1716
script:
1817
- cargo fmt -- --check
1918
- cargo clippy -- -D warnings
2019

21-
script:
22-
- cargo build --target "$TARGET" --verbose
20+
- stage: release
21+
name: 'Release linux'
22+
os: linux
23+
env: TARGET=x86_64-unknown-linux-gnu
24+
script:
25+
- cargo build --target "$TARGET" --release
26+
- mkdir -p ./dist/standup-${TRAVIS_TAG}-$TARGET
27+
- mv ./target/$TARGET/release/standup_rs ./dist/standup-${TRAVIS_TAG}-$TARGET/
28+
- tar -cvzf ./dist/standup-${TRAVIS_TAG}-$TARGET.tar.gz ./dist/standup-${TRAVIS_TAG}-$TARGET/
29+
deploy:
30+
provider: releases
31+
api_key:
32+
secure: $GITHUB_TOKEN
33+
file: ./dist/*.tar.gz
34+
file_glob: true
35+
skip_cleanup: true
36+
on:
37+
tags: true
38+
39+
- stage: release
40+
name: 'Release macOs'
41+
os: osx
42+
env: TARGET=x86_64-apple-darwin
43+
script:
44+
- cargo build --target "$TARGET" --release
45+
- mkdir -p ./dist/standup-${TRAVIS_TAG}-$TARGET
46+
- mv ./target/$TARGET/release/standup_rs ./dist/standup-${TRAVIS_TAG}-$TARGET/
47+
- tar -cvzf ./dist/standup-${TRAVIS_TAG}-$TARGET.tar.gz ./dist/standup-${TRAVIS_TAG}-$TARGET/
48+
deploy:
49+
provider: releases
50+
api_key:
51+
secure: $GITHUB_TOKEN
52+
file: ./dist/*.tar.gz
53+
file_glob: true
54+
skip_cleanup: true
55+
on:
56+
tags: true
2357

2458
cache:
2559
directories:

0 commit comments

Comments
 (0)