Skip to content

Spark runtime

Spark runtime #463

Workflow file for this run

name: Build Library
on:
workflow_dispatch:
push:
branches:
- "dev"
pull_request:
branches:
- "dev"
jobs:
build-ray-lib:
runs-on: ubuntu-latest
strategy:
matrix:
python:
- "3.11"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build data-processing-lib/ray
run: |
make -C data-processing-lib/ray DOCKER=docker venv build
build-spark-lib:
runs-on: ubuntu-latest
strategy:
matrix:
python:
- "3.11"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build data-processing-lib/spark
run: |
make -C data-processing-lib/spark DOCKER=docker venv build