Skip to content

fixup! Fetch access tokens from AWS Secrets Manager #40

fixup! Fetch access tokens from AWS Secrets Manager

fixup! Fetch access tokens from AWS Secrets Manager #40

Workflow file for this run

name: CBMC viewer release
# A new release is triggered by a new tag of the form viewer-VERSION
on:
push:
tags:
- viewer-*
jobs:
Release:
name: CBMC viewer release
runs-on: ubuntu-20.04
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Get version
run: |
# The environment variable GITHUB_REF is refs/tags/viewer-*
echo "SETUP_VERSION=$(python3 -c "import configparser; config = configparser.ConfigParser(); config.read('setup.cfg'); print(config['metadata']['version'])")" >> $GITHUB_ENV
echo "SOURCE_VERSION=$(python3 -c "import src.cbmc_viewer.version; print(src.cbmc_viewer.version.NUMBER)")" >> $GITHUB_ENV
echo "TAG_VERSION=$(echo ${{ github.ref }} | cut -d "/" -f 3 | cut -d "-" -f 2)" >> $GITHUB_ENV
- name: Version Check
run: |
if [[ ${{ env.SETUP_VERSION }} != ${{ env.TAG_VERSION }} ]] || [[ ${{ env.SOURCE_VERSION }} != ${{ env.TAG_VERSION }} ]]; then
echo "Setup and source versions ${{env.SETUP_VERSION}} and ${{env.SOURCE_VERSION}} did not match tag version ${{env.TAG_VERSION}}"
exit 1
fi
- name: Create release
uses: actions/create-release@v1
with:
tag_name: viewer-${{ env.TAG_VERSION }}
release_name: viewer-${{ env.TAG_VERSION }}
body: |
This is CBMC Viewer version ${{ env.TAG_VERSION }}.
On MacOS, you can install with brew:
```
brew install aws/tap/cbmc-viewer
```
The prefix `aws/tap` refers to the AWS repository with the brew package.
On all machines, you can install with pip:
```
python3 -m pip install cbmc-viewer
```
For best results, install [universal ctags](https://github.com/universal-ctags/ctags) or [exuberant ctags](https://github.com/universal-ctags/ctags) with
* MacOS: `brew install universal-ctags` or `brew install ctags`
* Ubuntu: `sudo apt install universal-ctags` or `sudo apt install ctags`
* Windows: Follow the installation instructions in the [universal-ctags](https://github.com/universal-ctags/ctags) or [exuberant ctags](http://ctags.sourceforge.net/) repository.
The installation of ctags is optional, but without ctags, `cbmc-viewer` will fail to link some symbols appearing in error traces to their definitions in the source code. The ctags tool has a long history. The original ctags was replaced by exhuberant ctags which was replaced by universal ctags. They all claim to be backwards compatible. We recommend universal ctags.
draft: false
prerelease: false