example-get-started-experiments test #91
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: example-get-started-experiments test | |
on: | |
push: | |
paths: | |
- example-get-started-experiments/** | |
branches: | |
- '**' # matches every branch | |
- '!master' # excludes master | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * 1' | |
permissions: | |
contents: read | |
id-token: write | |
jobs: | |
deploy-runner: | |
environment: aws | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: iterative/setup-cml@v2 | |
- uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-region: us-east-2 | |
role-to-assume: ${{ vars.AWS_SANDBOX_ROLE }} | |
role-duration-seconds: 43200 | |
- name: Create Runner | |
env: | |
REPO_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
run: | | |
cml runner launch --single \ | |
--labels=cml \ | |
--cloud=aws \ | |
--cloud-region=us-east \ | |
--cloud-hdd-size=40 \ | |
--cloud-type=g5.2xlarge \ | |
--idle-timeout=3600 \ | |
test: | |
needs: deploy-runner | |
runs-on: [ self-hosted, cml ] | |
environment: aws | |
container: | |
image: iterativeai/cml:0-dvc2-base1-gpu | |
options: --gpus all --ipc host | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
cache: 'pip' | |
- uses: aws-actions/configure-aws-credentials@v2 | |
with: | |
aws-region: us-east-2 | |
role-to-assume: ${{ vars.AWS_SANDBOX_ROLE }} | |
role-duration-seconds: 43200 | |
- name: Generate repo | |
env: | |
REPO_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
run: | | |
pip install virtualenv | |
cd example-get-started-experiments | |
./generate.sh |