-
Notifications
You must be signed in to change notification settings - Fork 121
54 lines (51 loc) · 1.56 KB
/
checks_new.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Master
on:
push:
branches:
- master
- ci-overhaul
paths-ignore:
- "docs/**"
pull_request:
paths-ignore:
- "docs/**"
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
serialize_examples:
runs-on: "ubuntu-latest"
name: Serialize Flytesnacks workflow
strategy:
matrix:
example: ["examples/k8s_spark_plugin"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Cache pip
uses: actions/cache@v3
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('dev-requirements.in', 'requirements.in')) }}
- name: Install dependencies
run: |
pip install uv
uv venv
source .venv/bin/activate
pip install flytekitplugins-spark flytekitplugins-envd
- name: Login to GitHub Container Registry
if: ${{ github.event_name == 'push' }}
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ secrets.FLYTE_BOT_USERNAME }}
password: ${{ secrets.FLYTE_BOT_PAT }}
- name: Pyflyte package
run: |
cd ${{ matrix.example }}
pyflyte --pkgs k8s_spark_plugin package -o spark-package.tgz --force --fast