Update Intel SDE.

Change-Id: Iabbcc9096d2c9eea4ad13aed82fb7b1997c02e24
Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/51545
Reviewed-by: Adam Langley <agl@google.com>
fips-20220613
David Benjamin 3 years ago committed by Adam Langley
parent 08970b3121
commit ec85d0ddbc
  1. 4
      .gitignore
  2. 8
      util/bot/DEPS
  3. 6
      util/bot/UPDATING
  4. 2
      util/bot/extract.py
  5. 1
      util/bot/sde-linux64.tar.bz2.sha1
  6. 1
      util/bot/sde-linux64.tar.xz.sha1
  7. 1
      util/bot/sde-win32.tar.bz2.sha1
  8. 1
      util/bot/sde-win32.tar.xz.sha1

4
.gitignore vendored

@ -24,7 +24,7 @@ util/bot/nasm-win32.exe
util/bot/perl-win32 util/bot/perl-win32
util/bot/perl-win32.zip util/bot/perl-win32.zip
util/bot/sde-linux64 util/bot/sde-linux64
util/bot/sde-linux64.tar.bz2 util/bot/sde-linux64.tar.xz
util/bot/sde-win32 util/bot/sde-win32
util/bot/sde-win32.tar.bz2 util/bot/sde-win32.tar.xz
util/bot/win_toolchain.json util/bot/win_toolchain.json

@ -187,7 +187,7 @@ hooks = [
'action': [ 'download_from_google_storage', 'action': [ 'download_from_google_storage',
'--no_resume', '--no_resume',
'--bucket', 'chrome-boringssl-sde', '--bucket', 'chrome-boringssl-sde',
'-s', 'boringssl/util/bot/sde-linux64.tar.bz2.sha1' '-s', 'boringssl/util/bot/sde-linux64.tar.xz.sha1'
], ],
}, },
{ {
@ -196,7 +196,7 @@ hooks = [
'condition': 'checkout_sde and host_os == "linux"', 'condition': 'checkout_sde and host_os == "linux"',
'action': [ 'python3', 'action': [ 'python3',
'boringssl/util/bot/extract.py', 'boringssl/util/bot/extract.py',
'boringssl/util/bot/sde-linux64.tar.bz2', 'boringssl/util/bot/sde-linux64.tar.xz',
'boringssl/util/bot/sde-linux64/', 'boringssl/util/bot/sde-linux64/',
], ],
}, },
@ -207,7 +207,7 @@ hooks = [
'action': [ 'download_from_google_storage', 'action': [ 'download_from_google_storage',
'--no_resume', '--no_resume',
'--bucket', 'chrome-boringssl-sde', '--bucket', 'chrome-boringssl-sde',
'-s', 'boringssl/util/bot/sde-win32.tar.bz2.sha1' '-s', 'boringssl/util/bot/sde-win32.tar.xz.sha1'
], ],
}, },
{ {
@ -216,7 +216,7 @@ hooks = [
'condition': 'checkout_sde and host_os == "win"', 'condition': 'checkout_sde and host_os == "win"',
'action': [ 'python3', 'action': [ 'python3',
'boringssl/util/bot/extract.py', 'boringssl/util/bot/extract.py',
'boringssl/util/bot/sde-win32.tar.bz2', 'boringssl/util/bot/sde-win32.tar.xz',
'boringssl/util/bot/sde-win32/', 'boringssl/util/bot/sde-win32/',
], ],
}, },

@ -46,13 +46,13 @@ perl-win32.zip: Update to the latest 64-bit prebuilt "Portable" edition of
The current revision is strawberry-perl-5.26.2.1-64bit-portable.zip. The current revision is strawberry-perl-5.26.2.1-64bit-portable.zip.
Finally, update sde-linux64.tar.bz2 and sde-win32.tar.bz2 by downloading the Finally, update sde-linux64.tar.xz and sde-win32.tar.xz by downloading the
latet release from Intel at latet release from Intel at
https://software.intel.com/en-us/articles/intel-software-development-emulator, https://software.intel.com/en-us/articles/intel-software-development-emulator,
but upload it with the following command. (Note the bucket is different.) but upload it with the following command. (Note the bucket is different.)
upload_to_google_storage.py -b chrome-boringssl-sde sde-linux64.tar.bz2 sde-win32.tar.bz2 upload_to_google_storage.py -b chrome-boringssl-sde sde-linux64.tar.xz sde-win32.tar.xz
The current revision is sde-external-8.50.0-2020-03-26-*.tar.bz2. The current revision is sde-external-9.0.0-2021-11-07-*.tar.xz.
When adding new files, remember to update .gitignore. When adding new files, remember to update .gitignore.

@ -118,6 +118,8 @@ def main(args):
entries = IterateTar(archive, 'gz') entries = IterateTar(archive, 'gz')
elif archive.endswith('.tar.bz2'): elif archive.endswith('.tar.bz2'):
entries = IterateTar(archive, 'bz2') entries = IterateTar(archive, 'bz2')
elif archive.endswith('.tar.xz'):
entries = IterateTar(archive, 'xz')
else: else:
raise ValueError(archive) raise ValueError(archive)

@ -1 +0,0 @@
baacb5a29755e299d3384c41c6dd55f65235ef1f

@ -0,0 +1 @@
8bba6e01a47b2cfd9e7429f77256db540031ff43

@ -1 +0,0 @@
cc2d77ff4a221165a8bb13f43ccfbff6550b90c8

@ -0,0 +1 @@
59ef225031e14e5ac257ada61d416f6ea0c9c080
Loading…
Cancel
Save