From e93c25c7ffaec9008351e3a86dd7882af73b2ece Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Fri, 24 Apr 2020 21:43:13 +0200 Subject: [PATCH] Fix CI scripts --- .builds/beta.yml | 4 ++-- .builds/nightly.yml | 4 ++-- .builds/stable.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.builds/beta.yml b/.builds/beta.yml index fc7a7baf..39c4b574 100644 --- a/.builds/beta.yml +++ b/.builds/beta.yml @@ -2,14 +2,14 @@ image: archlinux packages: - rustup sources: - - https://github.com/ruma/ruma-client-api + - https://github.com/ruma/ruma-events tasks: - rustup: | # We specify --profile minimal because we'd otherwise download docs rustup toolchain install beta --profile minimal -c rustfmt -c clippy rustup default beta - test: | - cd ruma-client-api + cd ruma-events # We don't want the build to stop on individual failure of independent # tools, so capture tool exit codes and set the task exit code manually diff --git a/.builds/nightly.yml b/.builds/nightly.yml index bf523c21..b9c6bac9 100644 --- a/.builds/nightly.yml +++ b/.builds/nightly.yml @@ -2,7 +2,7 @@ image: archlinux packages: - rustup sources: - - https://github.com/ruma/ruma-client-api + - https://github.com/ruma/ruma-events tasks: - rustup: | rustup toolchain install nightly --profile minimal @@ -13,7 +13,7 @@ tasks: rustup component add rustfmt || true rustup component add clippy || true - test: | - cd ruma-client-api + cd ruma-events # We don't want the build to stop on individual failure of independent # tools, so capture tool exit codes and set the task exit code manually diff --git a/.builds/stable.yml b/.builds/stable.yml index ff37d35a..598d69f1 100644 --- a/.builds/stable.yml +++ b/.builds/stable.yml @@ -2,14 +2,14 @@ image: archlinux packages: - rustup sources: - - https://github.com/ruma/ruma-client-api + - https://github.com/ruma/ruma-events tasks: - rustup: | # We specify --profile minimal because we'd otherwise download docs rustup toolchain install stable --profile minimal -c rustfmt -c clippy rustup default stable - test: | - cd ruma-client-api + cd ruma-events # We don't want the build to stop on individual failure of independent # tools, so capture tool exit codes and set the task exit code manually