Skip to content

Commit 86d0cc7

Browse files
authored
Merge pull request #52 from stepchowfun/bakefile
Update the Bakefile
2 parents 35abdf6 + 40ea903 commit 86d0cc7

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ install:
55
if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then
66
echo "$DOCKER_HUB_PASSWORD" | docker login --username stephanmisc --password-stdin
77
fi
8-
- curl https://raw.githubusercontent.com/stepchowfun/bake/master/install.sh -LSfs | VERSION=0.9.0 sh
8+
- curl https://raw.githubusercontent.com/stepchowfun/bake/master/install.sh -LSfs | VERSION=0.11.0 sh
99
script:
1010
- |
1111
if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then

bake.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@ image: ubuntu:18.04
22
default: ci
33
tasks:
44
install_packages:
5-
command: |-
5+
command: |
66
set -euo pipefail
77
apt-get update
88
apt-get install --yes build-essential curl
99
1010
install_tagref:
1111
dependencies:
1212
- install_packages
13-
command: |-
13+
command: |
1414
set -euo pipefail
1515
curl https://raw.githubusercontent.com/stepchowfun/tagref/master/install.sh -LSfs | VERSION=1.1.0 sh
1616
1717
create_user:
18-
command: |-
18+
command: |
1919
set -euo pipefail
2020
adduser --disabled-password --gecos '' user
2121
@@ -24,7 +24,7 @@ tasks:
2424
- install_packages
2525
- create_user
2626
user: user
27-
command: |-
27+
command: |
2828
set -euo pipefail
2929
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable-2019-04-25-x86_64-unknown-linux-gnu
3030
. $HOME/.cargo/env
@@ -44,7 +44,7 @@ tasks:
4444
- Cargo.lock
4545
- Cargo.toml
4646
user: user
47-
command: |-
47+
command: |
4848
set -euo pipefail
4949
. $HOME/.cargo/env
5050
mv Cargo.lock Cargo.lock.og
@@ -65,7 +65,7 @@ tasks:
6565
input_paths:
6666
- src
6767
user: user
68-
command: |-
68+
command: |
6969
set -euo pipefail
7070
. $HOME/.cargo/env
7171
cargo build
@@ -74,7 +74,7 @@ tasks:
7474
dependencies:
7575
- build
7676
user: user
77-
command: |-
77+
command: |
7878
set -euo pipefail
7979
. $HOME/.cargo/env
8080
cargo test
@@ -86,7 +86,7 @@ tasks:
8686
- .ignore # Used by `tagref`
8787
- rustfmt.toml # Used by `cargo fmt`
8888
user: user
89-
command: |-
89+
command: |
9090
set -euo pipefail
9191
. $HOME/.cargo/env
9292
cargo fmt --all -- --check
@@ -98,7 +98,7 @@ tasks:
9898
- build
9999
user: user
100100
command: |
101-
set -euxo pipefail
101+
set -euo pipefail
102102
. $HOME/.cargo/env
103103
cargo run
104104
@@ -117,7 +117,7 @@ tasks:
117117
output_paths:
118118
- artifacts
119119
user: user
120-
command: |-
120+
command: |
121121
set -euo pipefail
122122
. $HOME/.cargo/env
123123
cargo build --release

0 commit comments

Comments
 (0)