From 33f9eedce1dc3e81651f192ac6301623b6358eac Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Sun, 15 Jul 2018 20:34:56 +0200 Subject: [PATCH 1/3] Use rust environment in travis --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 4f26e1f..b295525 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,5 @@ sudo: required +language: rust services: - docker script: From cfda91af974b1b0ec786cb4002cc770dc8f743e4 Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Sun, 15 Jul 2018 20:58:08 +0200 Subject: [PATCH 2/3] Actually execute before_deploy function --- ci/before_deploy.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/before_deploy.sh b/ci/before_deploy.sh index 44cf4a5..3d49089 100755 --- a/ci/before_deploy.sh +++ b/ci/before_deploy.sh @@ -8,8 +8,8 @@ main() { mkdir -p $deploy - test -f Cargo.lock || cargo generate-lockfile - cp target/x86_64-unknown-linux-musl/release/bind9-api $stage/bind9-api-${TRAVIS-TAG:1}-x86_64-musl cp target/x86_64-unknown-linux-musl/release/bind9-api-client $stage/bind9-api-client-${TRAVIS-TAG:1}-x86_64-musl -} \ No newline at end of file +} + +main From 106a7cad2bb7244e3b713233dbf64785dc70493c Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Sun, 15 Jul 2018 21:26:36 +0200 Subject: [PATCH 3/3] Bump version numbers --- client/Cargo.toml | 2 +- server/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/Cargo.toml b/client/Cargo.toml index 6284927..3892ffe 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bind9-api-client" -version = "0.1.1" +version = "0.1.2" authors = ["Valentin Brandl "] description = "Client for the BIND9 API" license = "MIT/Apache-2.0" diff --git a/server/Cargo.toml b/server/Cargo.toml index 4617734..06047f0 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bind9-api" -version = "0.1.1" +version = "0.1.2" authors = ["Valentin Brandl "] description = "Web API to create, update and remove DNS entries in bind9" license = "MIT/Apache-2.0"