diff options
author | Ben Smith <binjimin@gmail.com> | 2018-07-25 14:38:27 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-25 14:38:27 -0700 |
commit | 847d112aaf9c5f402815caff6dbb70b814ba9469 (patch) | |
tree | 24c4a6854b5ce14148adabb15c50b71ffa20c6dc /scripts/sha256sum.py | |
parent | dd9d51d631394eb4100a27b5341ac4a08f12a09f (diff) | |
download | wabt-847d112aaf9c5f402815caff6dbb70b814ba9469.tar.gz wabt-847d112aaf9c5f402815caff6dbb70b814ba9469.tar.bz2 wabt-847d112aaf9c5f402815caff6dbb70b814ba9469.zip |
Some fixes for binary releases (#879)
* Create the artifacts before they are packaged (`before_deploy` happens
afterward)
* MacOS doesn't have sha256, so use python
Diffstat (limited to 'scripts/sha256sum.py')
-rwxr-xr-x | scripts/sha256sum.py | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/scripts/sha256sum.py b/scripts/sha256sum.py new file mode 100755 index 00000000..ff457d7a --- /dev/null +++ b/scripts/sha256sum.py @@ -0,0 +1,39 @@ +#!/usr/bin/env python +# +# Copyright 2018 WebAssembly Community Group participants +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from __future__ import print_function +import argparse +import hashlib +import sys + + +def main(args): + parser = argparse.ArgumentParser() + parser.add_argument('file', nargs='?') + options = parser.parse_args(args) + + if options.file is None: + parser.error('Expected a file') + + m = hashlib.sha256() + with open(options.file, 'rb') as f: + m.update(f.read()) + print('%s %s' % (m.hexdigest(), options.file)) + return 0 + + +if __name__ == '__main__': + sys.exit(main(sys.argv[1:])) |