gcp auth #72
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: gcp-auth-script | |
on: | |
push: | |
branches: | |
- ci-testing | |
- main | |
- release/* #ToDo: add a release branch | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
activate-vm: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Demos🛎 | |
uses: actions/checkout@v2 | |
with: | |
path: demos | |
persist-credentials: false | |
submodules: "recursive" | |
fetch-depth: 1 | |
- name: Install clients | |
run: | | |
pip3 install pymongo google-api-python-client paramiko==2.7.1 | |
- name: Start GPU VM | |
run: | | |
cd demos/.github/auth | |
mkdir -p ~/.ssh | |
touch ~/.ssh/id_rsa | |
echo "${{ secrets.SSH_KEY }}" > ~/.ssh/id_rsa | |
chmod 600 ~/.ssh/id_rsa | |
python3 db_auth.py ${{ secrets.DB_ENDPOINT }} ${{ secrets.DB_OBJ_ID }} | |
python3 vm_auth.py ${{ secrets.SSH_USERNAME }} | |
run-test: | |
needs: activate-vm | |
runs-on: self-hosted | |
steps: | |
- name: Checkout Demos🛎 | |
uses: actions/checkout@v2 | |
with: | |
path: demos | |
persist-credentials: false | |
submodules: "recursive" | |
fetch-depth: 1 | |
- name: Run Demo Testing | |
run: | | |
echo "testing things out!" | |
deactivate-vm: | |
needs: run-test | |
runs-on: ubuntu-latest | |
steps: | |
- id: 'auth' | |
uses: 'google-github-actions/[email protected]' | |
with: | |
credentials_json: '${{ secrets.GCP_AUTH }}' | |
- name: 'Set up Cloud SDK' | |
uses: 'google-github-actions/setup-gcloud@v1' | |
with: | |
version: '>= 363.0.0' | |
- name: 'Stop VM instance' | |
run: 'gcloud compute instances stop demos-tests --zone us-central1-a' | |