[cache] Enable main and schedule for now (#29) #24
This file contains hidden or 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: Build Cache [using jupyter-book] | |
on: | |
push: | |
branches: | |
- main | |
schedule: | |
# Execute cache weekly at 3am on Monday | |
- cron: '0 3 * * 1' | |
jobs: | |
deploy-runner: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: iterative/setup-cml@v2 | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Deploy runner on EC2 | |
env: | |
REPO_TOKEN: ${{ secrets.QUANTECON_SERVICES_PAT }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
run: | | |
cml runner launch \ | |
--cloud=aws \ | |
--cloud-region=us-west-2 \ | |
--cloud-type=p3.2xlarge \ | |
--labels=cml-gpu \ | |
--cloud-hdd-size=50 | |
cache: | |
needs: deploy-runner | |
runs-on: [self-hosted, cml-gpu] | |
container: | |
image: docker://mmcky/quantecon-lecture-python:cuda-12.3.1-anaconda-2024-02-py311 | |
options: --gpus all | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Check nvidia drivers | |
shell: bash -l {0} | |
run: | | |
nvidia-smi | |
- name: Build HTML | |
shell: bash -l {0} | |
run: | | |
jb build lectures --path-output ./ -W --keep-going | |
- name: Upload Execution Reports | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: execution-reports | |
path: _build/html/reports | |
- name: Upload "_build" folder (cache) | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-cache | |
path: _build |