forked from OpenLineage/OpenLineage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Pawel Leszczynski <[email protected]>
- Loading branch information
1 parent
fe7a75f
commit dbf0a03
Showing
318 changed files
with
141 additions
and
68,815 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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
workflows: | ||
openlineage-spec: | ||
jobs: | ||
- verify-spec-snapshot: | ||
filters: | ||
tags: | ||
only: /^[0-9]+(\.[0-9]+){2}(-rc\.[0-9]+)?$/ | ||
context: << pipeline.parameters.build-context >> | ||
- workflow_complete: | ||
filters: | ||
tags: | ||
only: /^[0-9]+(\.[0-9]+){2}(-rc\.[0-9]+)?$/ | ||
requires: | ||
- release-client-java | ||
- release-integration-sql-java |
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,87 @@ | ||
name: Build & Deploy spec to Github Pages | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
push: | ||
branches: | ||
- main | ||
# testing only, not allowed to run on OpenLineage/OpenLineage repo | ||
- docs-deploy | ||
|
||
permissions: | ||
id-token: write | ||
|
||
jobs: | ||
site-deploy: | ||
name: Build and Publish To openlineage-site repo | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
path: 'source' | ||
- uses: actions/checkout@v4 | ||
with: | ||
repository: 'pawel-big-lebowski/openlineage-site' # TODO: change this | ||
path: 'target' | ||
token: ${{ secrets.ACTIONS_GITHUB_TOKEN }} | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 22 | ||
cache: "npm" | ||
cache-dependency-path: source/website/package-lock.json | ||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'corretto' | ||
java-version: '17' | ||
- uses: shogo82148/actions-setup-perl@v1 | ||
with: | ||
perl-version: "5.38" | ||
- name: Regenerate Javadoc to website | ||
run: | | ||
cd source/client/java | ||
./gradlew javadoc | ||
cp -r build/docs/javadoc ../../website/static/apidocs | ||
- name: Install dependencies | ||
run: | | ||
cd source/website | ||
yarn install --frozen-lockfile | ||
- name: Generate openapi | ||
run: | | ||
SPEC_DIR="$(pwd)/source/website/static/spec" | ||
APIDOC_DIR="$(pwd)/source/website/static/apidocs" | ||
pushd $SPEC_DIR | ||
LATEST_VERSION=$(find . -maxdepth 1 | grep -v 'facets' | grep '[0-9]*-[0-9]-[0-9]' | sort -Vr | head -1) | ||
echo latest version is $LATEST_VERSION | ||
rm -f ./OpenLineage.json 2>/dev/null | ||
perl -i -pe"s/version: [[:alnum:]\.-]*/version: ${LATEST_VERSION:2}/g" ./OpenLineage.yml | ||
echo Versions updated | ||
mkdir "${LATEST_VERSION}/facets" | ||
for i in $(ls -d ./facets/* | sort); do cp $i/*.json ${LATEST_VERSION}/facets; done; | ||
echo "LATEST_VERSION=${LATEST_VERSION}" >> "$GITHUB_ENV" | ||
pushd $LATEST_VERSION | ||
ln -sf ../OpenLineage.yml . | ||
popd | ||
- name: Generate redoc | ||
run: | | ||
npm install redoc-cli | ||
yarn run redoc-cli build -o source/website/static/apidocs/openapi/index.html source/website/static/spec/$LATEST_VERSION/OpenLineage.yml --title "OpenLineage API Docs" | ||
- name: Clean temp files | ||
run: | | ||
pushd source/website/static/spec/$LATEST_VERSION | ||
rm -rf facets | ||
rm OpenLineage.yml | ||
popd | ||
- name: Push target repo | ||
run: | | ||
rm -r target/* | ||
cp -r source/website/* target | ||
cd target | ||
git config user.name "GitHub Action Website Snapshot" | ||
git config user.email "<>" | ||
git add * | ||
git commit -m "refreshing website content from main repo" | ||
git push |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/bin/bash | ||
|
||
# Copy changed spec JSON files to target location | ||
git diff --name-only HEAD -- 'spec/*.json' 'spec/OpenLineage.yml' | while read LINE; do | ||
# ignore registry files | ||
if [[ $LINE =~ "registry.json" ]]; then | ||
continue | ||
fi | ||
|
||
# extract target file name from $id field in spec files | ||
URL=$(cat $LINE | jq -r '.["$id"]') | ||
|
||
# extract target location in website repo | ||
LOC="website/static/${URL#*//*/}" | ||
LOC_DIR="${LOC%/*}" | ||
|
||
# create dir if necessary, and copy files | ||
echo "change detected in $LINE" | ||
mkdir -p $LOC_DIR | ||
cp $LINE $LOC | ||
done |
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,10 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Copyright 2018-2024 contributors to the OpenLineage project | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
|
||
cd "$(dirname "$0")" | ||
./gradlew javadoc | ||
rm -rf ../../website/static/apidocs/javadoc | ||
mv ./build/docs/javadoc ../../website/static/apidocs/ |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1 +1 @@ | ||
openlineage.io | ||
openlineage.github.io |
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
Oops, something went wrong.