File tree 1 file changed +4
-3
lines changed 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 8
8
9
9
env :
10
10
BUILDER_VERSION : v0.3.1
11
+ BUILDER_HOST : https://d19elf31gohf1l.cloudfront.net
11
12
PACKAGE_NAME : aws-c-http
12
13
LINUX_BASE_IMAGE : ubuntu-16-x64
13
14
@@ -74,15 +75,15 @@ jobs:
74
75
steps :
75
76
- name : Build ${{ env.PACKAGE_NAME }} + consumers
76
77
run : |
77
- python -c "from urllib.request import urlretrieve; urlretrieve('https://aws-crt-builder.s3.amazonaws.com /${{ env.BUILDER_VERSION }}/builder', 'builder.pyz')"
78
- python builder.pyz -p ${{ env.PACKAGE_NAME }} build default-downstream
78
+ python -c "from urllib.request import urlretrieve; urlretrieve('${{ env.BUILDER_HOST }} /${{ env.BUILDER_VERSION }}/builder', 'builder.pyz')"
79
+ python builder.pyz -p ${{ env.PACKAGE_NAME }} build
79
80
80
81
osx :
81
82
runs-on : macos-latest
82
83
steps :
83
84
- name : Build ${{ env.PACKAGE_NAME }} + consumers
84
85
run : |
85
- python3 -c "from urllib.request import urlretrieve; urlretrieve('https://aws-crt-builder.s3.amazonaws.com /${{ env.BUILDER_VERSION }}/builder', 'builder')"
86
+ python3 -c "from urllib.request import urlretrieve; urlretrieve('${{ env.BUILDER_HOST }} /${{ env.BUILDER_VERSION }}/builder', 'builder')"
86
87
chmod a+x builder
87
88
./builder -p ${{ env.PACKAGE_NAME }} build default-downstream
88
89
You can’t perform that action at this time.
0 commit comments