about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2017-01-27 14:41:13 -0800
committerAlex Crichton <alex@alexcrichton.com>2017-01-27 16:41:50 -0800
commitac1e92328add1b64519e9894ca0e3c565865a69e (patch)
tree84209b6d5357b23a0d2e609f95906f3e74e84fdb
parent0e64d4954fbee6e9e3899429dd4ae45c43ab5868 (diff)
parent8944582d1d51f64d38a88791a30e1b2d415ef123 (diff)
downloadrust-ac1e92328add1b64519e9894ca0e3c565865a69e.tar.gz
rust-ac1e92328add1b64519e9894ca0e3c565865a69e.zip
Rollup merge of #39302 - alexcrichton:upload-all, r=brson
travis: Upload all artifacts in build/dist

Previously we only uploaded tarballs, but this modifies Travis/AppVeyor to
upload everything. We shouldn't have anything else in there to worry about and
otherwise we need to be sure to pick up pkg/msi/exe installers.
-rw-r--r--.travis.yml4
-rw-r--r--appveyor.yml4
2 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 5e7c89fc100..8a7dc96b34b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -110,9 +110,9 @@ before_deploy:
   - mkdir -p deploy/$TRAVIS_COMMIT
   - >
       if [ "$TRAVIS_OS_NAME" == "osx" ]; then
-          cp build/dist/*.tar.gz deploy/$TRAVIS_COMMIT;
+          cp -r build/dist deploy/$TRAVIS_COMMIT;
       else
-          cp obj/build/dist/*.tar.gz deploy/$TRAVIS_COMMIT;
+          cp -r obj/build/dist deploy/$TRAVIS_COMMIT;
       fi
 
 deploy:
diff --git a/appveyor.yml b/appveyor.yml
index f158d788d16..418cdcb07af 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -137,7 +137,7 @@ branches:
 before_deploy:
   - ps: |
         New-Item -Path deploy -ItemType directory
-        Get-ChildItem -Path build\dist -Filter '*.tar.gz' | Move-Item -Destination deploy
+        Get-ChildItem -Path build\dist | Move-Item -Destination deploy
         Get-ChildItem -Path deploy | Foreach-Object {
           Push-AppveyorArtifact $_.FullName -FileName ${env:APPVEYOR_REPO_COMMIT}/$_
         }
@@ -151,7 +151,7 @@ deploy:
     bucket: rust-lang-ci
     set_public: true
     region: us-east-1
-    artifact: /.*\.tar.gz/
+    artifact: /.*/
     folder: rustc-builds
     on:
       branch: auto