diff options
author | Jack Lloyd <[email protected]> | 2020-12-01 17:48:19 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2020-12-05 11:47:55 -0500 |
commit | dc6cba8c573097e7b2b04b65d56b0d568b221a08 (patch) | |
tree | 3ddf98ec797d9066b9725c874e81e6594bb0541b /src/scripts | |
parent | 4fbe770bfcd68287fd1b37d234d3971b11e82da1 (diff) |
Update the BoringSSL runner and update the shim
Notable changes are checking if a message is sent past a flight
boundary, and some new policy logic to distinguish between signature
algorithms that we will accept and signature algorithms which we are
willing to use ourselves.
Diffstat (limited to 'src/scripts')
-rwxr-xr-x | src/scripts/ci/setup_gh_actions.sh | 2 | ||||
-rwxr-xr-x | src/scripts/ci/setup_travis.sh | 11 |
2 files changed, 1 insertions, 12 deletions
diff --git a/src/scripts/ci/setup_gh_actions.sh b/src/scripts/ci/setup_gh_actions.sh index 5a9173834..0f33f2fdd 100755 --- a/src/scripts/ci/setup_gh_actions.sh +++ b/src/scripts/ci/setup_gh_actions.sh @@ -51,7 +51,7 @@ if type -p "apt-get"; then pip install --user codecov echo "$HOME/.local/bin" >> "$GITHUB_PATH" - git clone --depth 1 --branch runner-changes https://github.com/randombit/boringssl.git + git clone --depth 1 --branch jack/runner-20201201 https://github.com/randombit/boringssl.git sudo chgrp -R "$(id -g)" /var/lib/softhsm/ /etc/softhsm sudo chmod g+w /var/lib/softhsm/tokens diff --git a/src/scripts/ci/setup_travis.sh b/src/scripts/ci/setup_travis.sh index bd43cfc9e..76d59c0d7 100755 --- a/src/scripts/ci/setup_travis.sh +++ b/src/scripts/ci/setup_travis.sh @@ -44,17 +44,6 @@ if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get -qq update sudo apt-get install pylint - elif [ "$TARGET" = "coverage" ]; then - sudo apt-get -qq update - sudo apt-get install g++-8 softhsm2 libtspi-dev lcov python-coverage libboost-all-dev gdb - pip install --user codecov - git clone --depth 1 --branch runner-changes-golang1.10 https://github.com/randombit/boringssl.git - - sudo chgrp -R "$(id -g)" /var/lib/softhsm/ /etc/softhsm - sudo chmod g+w /var/lib/softhsm/tokens - - softhsm2-util --init-token --free --label test --pin 123456 --so-pin 12345678 - elif [ "$TARGET" = "docs" ]; then sudo apt-get -qq update sudo apt-get install doxygen python-docutils python3-sphinx |