Adds config init #64
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: Build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: pwsh | |
working-directory: ${{ matrix.workshop-dir }} | |
strategy: | |
fail-fast: false | |
matrix: | |
workshop-dir: ["scipy-2023"] | |
python-version: ["3.8", "3.9", "3.10", "3.11"] | |
os: ["ubuntu-latest", "macos-latest", "windows-latest"] | |
env: | |
AWS_ACCESS_KEY_ID: minio | |
AWS_SECRET_ACCESS_KEY: miniostorage | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Cache pip | |
uses: actions/cache@v2 | |
with: | |
# This path is specific to Ubuntu | |
path: ~/.cache/pip | |
# Look to see if there is a cache hit for the corresponding requirements files | |
key: ${{ format('{0}-pip-{1}', runner.os, hashFiles('requirements.txt')) }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt flytekitplugins-envd | |
pip install --force-reinstall git+https://github.com/flyteorg/flytekit@3006032 | |
pip install pytest pytest-xdist | |
- name: Pip info | |
run: python -m pip list | |
- name: Install FlyteCTL | |
uses: unionai-oss/flytectl-setup-action@master | |
- name: Unit Tests | |
run: pytest tests/unit | |
- name: Setup Flyte Sandbox | |
run: | | |
flytectl demo start | |
- name: Update Resources | |
uses: nick-fields/retry@v2 | |
with: | |
timeout_minutes: 10 | |
retry_wait_seconds: 15 | |
max_attempts: 10 | |
shell: pwsh | |
command: cd ${{ matrix.workshop-dir }} && flytectl --config /home/runner/.flyte/config-sandbox.yaml update task-resource-attribute --attrFile cra.yaml | |
- name: Register Workflows | |
env: | |
FLYTECTL_CONFIG: /home/runner/.flyte/config-sandbox.yaml | |
uses: nick-fields/retry@v2 | |
with: | |
timeout_minutes: 10 | |
retry_wait_seconds: 15 | |
max_attempts: 10 | |
shell: pwsh | |
command: cd ${{ matrix.workshop-dir }} && pyflyte register --image ghcr.io/flyteorg/flyte-conference-talks:scipy-2023-ci workflows |