Skip to content

Commit

Permalink
Switch to stable: WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
mvines committed Dec 17, 2018
1 parent 3938d68 commit 635d655
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion ci/buildkite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ steps:
- command: "ci/docker-run.sh solanalabs/rust:1.31.0 ci/test-stable.sh"
name: "stable"
timeout_in_minutes: 30
- command: "ci/docker-run.sh solanalabs/rust-nightly:2018-12-05 ci/test-nightly.sh"
- command: "ci/docker-run.sh solanalabs/rust:1:31.0 ci/test-nightly.sh"
name: "nightly"
timeout_in_minutes: 30
# TODO: Fix and re-enable test-large-network.sh
Expand Down
16 changes: 7 additions & 9 deletions ci/test-nightly.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e
cd "$(dirname "$0")/.."
source ci/upload-ci-artifact.sh

ci/version-check.sh nightly
ci/version-check.sh stable
export RUST_BACKTRACE=1

_() {
Expand Down Expand Up @@ -53,16 +53,14 @@ _ cd target/cov && tar -cjf lcov-report.tar.bz2 report-lcov/* && cd -
_ upload-ci-artifact "target/cov/lcov-report.tar.bz2"

# Upload coverage files to buildkite for grcov debugging
_ cd target/cov/build && tar -cjf cov-gcda.tar.bz2 gcda/* && cd -
_ upload-ci-artifact "target/cov/build/cov-gcda.tar.bz2"

_ cd target/cov/build && tar -cjf cov-gcno.tar.bz2 gcno/* && cd -
_ upload-ci-artifact "target/cov/build/cov-gcno.tar.bz2"
#_ cd target/cov/build && tar -cjf cov-gcda.tar.bz2 gcda/* && cd -
#_ upload-ci-artifact "target/cov/build/cov-gcda.tar.bz2"
#
#_ cd target/cov/build && tar -cjf cov-gcno.tar.bz2 gcno/* && cd -
#_ upload-ci-artifact "target/cov/build/cov-gcno.tar.bz2"

if [[ -z "$CODECOV_TOKEN" ]]; then
echo CODECOV_TOKEN undefined
else
true
# TODO: Why doesn't codecov grok our lcov files?
#bash <(curl -s https://codecov.io/bash) -X gcov
bash <(curl -s https://codecov.io/bash) -X gcov
fi

0 comments on commit 635d655

Please sign in to comment.