Skip to content

Commit e8caf20

Browse files
committed
Updated do_sde.sh to get SDE from GitHub.
Details: - Updated travis/do_sde.sh so that the script downloads the SDE tarball from a new ci-utils repository on GitHub rather than from Intel's website. This change is being made in an attempt to circumvent Travis CI's recent troubles with downloading the SDE from Intel's website via curl. Thanks to Devin Matthews for suggesting the idea.
1 parent 290ff4b commit e8caf20

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

travis/do_sde.sh

+10-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,16 @@ SDE=$SDE_VERSION/sde64
1616
#curl --verbose --cookie jar.txt --output $SDE_TARBALL \
1717
# https://software.intel.com/system/files/managed/2a/1a/$SDE_TARBALL
1818

19-
curl --verbose --output $SDE_TARBALL \
20-
https://software.intel.com/content/dam/develop/external/us/en/documents/downloads/$SDE_TARBALL
19+
#curl --verbose --output $SDE_TARBALL \
20+
# https://software.intel.com/content/dam/develop/external/us/en/documents/downloads/$SDE_TARBALL
21+
22+
CI_UTILS=ci-utils
23+
CI_UTILS_URL=https://github.com/flame/${CI_UTILS}.git
24+
CI_UTILS_SDE_DIR=sde
25+
SDE_DIRPATH=$CI_UTILS/$CI_UTILS_SDE_DIR
26+
27+
git clone $CI_UTILS_URL
28+
mv $SDE_DIRPATH/$SDE_TARBALL .
2129

2230
tar xvf $SDE_TARBALL
2331

0 commit comments

Comments
 (0)