-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
85 changed files
with
1,076 additions
and
667 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
|
||
name: Build Transform Images | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- "dev" | ||
pull_request: | ||
branches: | ||
- "dev" | ||
jobs: | ||
build-code: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Build and Test Code Transforms | ||
run: | | ||
make -C transforms/code DOCKER=docker image test-image | ||
build-universal: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Build and Test Universal Transforms | ||
run: | | ||
make -C transforms/universal DOCKER=docker image test-image | ||
build-tools: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Build and Test Universal Transforms | ||
run: | | ||
make -C tools/ingest2parquet DOCKER=docker image test-image |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
|
||
name: Build Library | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- "dev" | ||
pull_request: | ||
branches: | ||
- "dev" | ||
jobs: | ||
build-lib: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python: | ||
- "3.11" | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Build data-processing-lib | ||
run: | | ||
make -C data-processing-lib DOCKER=docker venv build |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: deploy docs | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- dev | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.x | ||
- run: pip install mkdocs-material mkdocstrings[python] mkdocs-badges mkdocs-same-dir | ||
- run: | | ||
# remove badges | ||
cat README.md |sed '/img\.shields\.io/d' > README_.md | ||
mv README_.md README.md | ||
mkdocs gh-deploy --force |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: Build, Test, and Upload PyPI package | ||
|
||
on: | ||
release: | ||
types: | ||
- published | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
# see https://docs.pypi.org/trusted-publishers/ | ||
id-token: write | ||
|
||
jobs: | ||
build-package: | ||
name: Build and check packages | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
# for setuptools-scm | ||
fetch-depth: 0 | ||
- name: Build Package for pypi | ||
run: | | ||
make -C data-processing-lib build | ||
publish-test-pypi: | ||
name: Publish packages to test.pypi.org | ||
# disabled | ||
if: false | ||
runs-on: ubuntu-latest | ||
needs: build-package | ||
|
||
steps: | ||
- name: Fetch build artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: Packages | ||
path: dist | ||
|
||
- name: Upload to Test PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
repository-url: https://test.pypi.org/legacy/ | ||
|
||
publish-pypi: | ||
name: Publish release to pypi.org | ||
runs-on: ubuntu-latest | ||
needs: build-package | ||
# disabled as of now | ||
if: false | ||
steps: | ||
- name: Fetch build artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: Packages | ||
path: dist | ||
- name: Upload to PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Build, Test, and upload Transform images to quay.io | ||
|
||
on: | ||
release: | ||
types: | ||
- published | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build-images: | ||
name: Build and check images | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
# for setuptools-scm | ||
fetch-depth: 0 | ||
- name: Build Package for pypi | ||
run: | | ||
make -C transforms image test-image | ||
publish-images: | ||
name: Publish packages to quay.io | ||
# disabled | ||
if: false | ||
runs-on: ubuntu-latest | ||
needs: build-images | ||
|
||
steps: | ||
- name: Push images to quay.io registry | ||
run: | | ||
make -C transforms publish |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
name: Test CI | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- "dev" | ||
pull_request: | ||
branches: | ||
- "dev" | ||
jobs: | ||
test-lib: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Test data-processing-lib | ||
run: | | ||
make -C data-processing-lib DOCKER=docker venv test | ||
test-code: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Test Code Transforms | ||
run: | | ||
make -C transforms/code DOCKER=docker venv test-src | ||
test-universal: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Test Universal Transforms | ||
run: | | ||
make -C transforms/universal DOCKER=docker venv test-src | ||
test-tools: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Test tools | ||
run: | | ||
make -C tools DOCKER=docker venv test | ||
test-kfp-lib: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Test KFP lib | ||
run: | | ||
source kind/requirements.env | ||
export PATH=$PATH:/tmp/ | ||
curl -Lo /tmp/kind https://kind.sigs.k8s.io/dl/v${KIND_VERSION}/kind-linux-amd64 | ||
curl -fsSL -o /tmp/get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | ||
chmod 700 /tmp/get_helm.sh | ||
HELM_INSTALL_DIR=/tmp/ /tmp/get_helm.sh -v v${HELM_VERSION} --no-sudo | ||
chmod 777 /tmp/helm | ||
chmod 777 /tmp/kind | ||
curl -L https://dl.k8s.io/release/v${KUBECTL_VERSION}/bin/linux/amd64/kubectl -o /tmp/kubectl | ||
chmod 777 /tmp/kubectl | ||
curl https://dl.min.io/client/mc/release/linux-amd64/mc --create-dirs -o /tmp/mc | ||
chmod +x /tmp/mc | ||
export DEPLOY_KUBEFLOW=0 | ||
make -C kind setup | ||
make -C kfp/kfp_support_lib build test | ||
test-kfp-compile: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Test KFP compile | ||
run: | | ||
make -C kfp/transform_workflows venv build |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,5 @@ David Wood - dawood@us.ibm.com | |
|
||
Boris Lublinsky - blublinsky@ibm.com | ||
|
||
Revital Eres - eres@il.ibm.com | ||
|
Oops, something went wrong.