diff options
| author | bors <bors@rust-lang.org> | 2020-03-24 15:49:27 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2020-03-24 15:49:27 +0000 |
| commit | 2dcf54f564c6d8bbf48960fb9aaec88a0e2e062a (patch) | |
| tree | f24523de72b2322c3f2f6c8433d982f8cd5bd1b9 /src/ci/scripts/install-awscli.sh | |
| parent | 374ab25585f0a817fe7bd6986737f12347b12d0b (diff) | |
| parent | 45910e74fde9849feaa34ce851f317bc3c21f14f (diff) | |
| download | rust-2dcf54f564c6d8bbf48960fb9aaec88a0e2e062a.tar.gz rust-2dcf54f564c6d8bbf48960fb9aaec88a0e2e062a.zip | |
Auto merge of #70190 - pietroalbini:gha, r=Mark-Simulacrum
Add GitHub Actions configuration This PR adds the GitHub Actions configuration to the rust-lang/rust repository. The configuration will be run in parallel with Azure Pipelines until the evaluation finishes: the infrastructure team will then decide whether to switch. Since GitHub Actions doesn't currently have any way to include pieces of configuration, this also adds the `src/tools/expand-yaml-anchors` tool, which serves as a sort of templating system. Otherwise the configuration is a mostly straight port from the Azure Pipelines configuration (thanks to all the PRs opened in the past). There are still a few small things I need to fix before we can land this, but it's mostly complete and ready for an initial review. r? @Mark-Simulacrum
Diffstat (limited to 'src/ci/scripts/install-awscli.sh')
| -rwxr-xr-x | src/ci/scripts/install-awscli.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ci/scripts/install-awscli.sh b/src/ci/scripts/install-awscli.sh index e2118793850..f9b759fe343 100755 --- a/src/ci/scripts/install-awscli.sh +++ b/src/ci/scripts/install-awscli.sh @@ -28,7 +28,7 @@ if isLinux; then pipflags="--user" sudo apt-get install -y python3-setuptools - echo "##vso[task.prependpath]$HOME/.local/bin" + ciCommandAddPath "${HOME}/.local/bin" fi mkdir -p "${DEPS_DIR}" |
