move transform exceptions doc out of ray runtime to overview #957
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 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 |