Skip to content

move transform exceptions doc out of ray runtime to overview #957

move transform exceptions doc out of ray runtime to overview

move transform exceptions doc out of ray runtime to overview #957

Workflow file for this run

name: Build Transform Images
on:
workflow_dispatch:
push:
branches:
- "dev"
pull_request:
branches:
- "dev"
jobs:
build-code:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build and Test Code Transforms
run: |
make -C data-processing-lib DOCKER=docker image
make -C transforms/code DOCKER=docker test-image
build-language:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build and Test Language Transforms
run: |
make -C data-processing-lib DOCKER=docker image
make -C transforms/language DOCKER=docker test-image
build-universal:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build and Test Universal Transforms
run: |
make -C data-processing-lib DOCKER=docker image
make -C transforms/universal DOCKER=docker test-image
build-tools:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build and Test Tool images
run: |
make -C tools/ingest2parquet DOCKER=docker test-image