Make sure no information fetched from secrets manager is logged #232
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test CBMC starter-kit by using coreHTTP | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, labeled, unlabeled] | |
push: | |
branches: [ master ] | |
jobs: | |
run-tests: | |
if: "!contains(github.event.pull_request.labels.*.name, 'no-test')" | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [ '3.8', '3.9', '3.10' ] | |
name: Python ${{ matrix.python-version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install latest CBMC | |
id: install_latest_cbmc | |
shell: bash | |
run: | | |
# Search within 5 most recent releases for latest available package | |
CBMC_REL="https://api.github.com/repos/diffblue/cbmc/releases?page=1&per_page=5" | |
CBMC_DEB=$(curl -s $CBMC_REL | jq -r '.[].assets[].browser_download_url' | grep -e 'ubuntu-20.04' | head -n 1) | |
CBMC_ARTIFACT_NAME=$(basename $CBMC_DEB) | |
curl -o $CBMC_ARTIFACT_NAME -L $CBMC_DEB | |
sudo dpkg -i $CBMC_ARTIFACT_NAME | |
rm ./$CBMC_ARTIFACT_NAME | |
- name: Install latest Litani | |
id: install_latest_litani | |
shell: bash | |
run: | | |
# Search within 5 most recent releases for latest available package | |
LITANI_REL="https://api.github.com/repos/awslabs/aws-build-accumulator/releases?page=1&per_page=5" | |
LITANI_DEB=$(curl -s $LITANI_REL | jq -r '.[].assets[0].browser_download_url' | head -n 1) | |
DBN_PKG_FILENAME=$(basename $LITANI_DEB) | |
curl -L $LITANI_DEB -o $DBN_PKG_FILENAME | |
sudo apt-get update | |
sudo apt-get install --no-install-recommends --yes ./$DBN_PKG_FILENAME | |
rm ./$DBN_PKG_FILENAME | |
- name: Install dependencies | |
run: python3 -m pip install pyyaml jinja2 cbmc-viewer | |
- name: Run test target in Makefile | |
run: | | |
cd test/repo | |
make test |