Update scripts for 2.7.1 release #153
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: CI | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
build-ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Test install on Ubuntu | |
run: | | |
chmod +x ./install-linux.sh | |
VANTA_SKIP_REGISTRATION_CHECK=1 VANTA_KEY=FAKEKEY ./install-linux.sh | |
- name: Check that it's running correctly | |
run: /var/vanta/vanta-cli status | |
build-macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v1 | |
# NB: Disabled until release 2.8 fixes FAKEKEY installation [sc-127560] | |
# - name: Test install on macOS | |
# run: | | |
# chmod +x ./install-macos.sh | |
# VANTA_KEY=FAKEKEY ./install-macos.sh | |
# - name: Check that it's running correctly | |
# run: /usr/local/vanta/vanta-cli status |