Skip to content

Commit

Permalink
Build a notebook-based image with the current Elyra code
Browse files Browse the repository at this point in the history
  • Loading branch information
caponetto committed Oct 25, 2024
1 parent aa27131 commit ce1211b
Show file tree
Hide file tree
Showing 3 changed files with 118 additions and 4 deletions.
68 changes: 64 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
name: Elyra Tests
name: Elyra CI
on:
push: # all branches
pull_request: # all branches
Expand All @@ -26,6 +26,8 @@ env:
NODE_VERSION: 20.11.0
YARN_VERSION: 3.5.0
PYTHON_VERSION: 3.11
QUAY_WORKBENCH_IMAGES_REPOSITORY: 'opendatahub/workbench-images'
QUAY_WORKBENCH_IMAGES_TAG_PREFIX_CSV: 'jupyter-trustyai-ubi9-python-3.11-20241,cuda-jupyter-tensorflow-ubi9-python-3.11-20241'

jobs:
prepare-yarn-cache:
Expand Down Expand Up @@ -230,8 +232,13 @@ jobs:
- name: Validate runtime images
run: make REMOVE_RUNTIME_IMAGE=1 validate-runtime-images

upload-artifacts:
name: Upload Artifacts
publish-artifacts:
permissions:
contents: read
packages: write
attestations: write
id-token: write
name: Publish Artifacts
needs: prepare-yarn-cache
runs-on: ubuntu-latest
steps:
Expand All @@ -254,10 +261,63 @@ jobs:
corepack prepare yarn@${{ env.YARN_VERSION }} --activate
yarn set version ${{ env.YARN_VERSION }}
yarn --version
- name: Free up additional disk space
run: |
./.github/workflows/scripts/free_gha_space.sh
- name: Build
run: |
make install-prod
- name: Upload artifacts
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build notebook images
id: build-notebook-images
run: |
TAG_SUFFIX=$([ -n "${{ github.event.pull_request.number }}" ] && echo "-pr-${{ github.event.pull_request.number }}" || echo "-sha-$(echo "${{ github.sha }}" | cut -c1-8)")
echo "Tag suffix: $TAG_SUFFIX"
WHL_FILE_PATH=$(ls dist/*.whl | head -n 1)
WHL_FILE_NAME=$(basename $WHL_FILE_PATH)
echo "Wheel file: $WHL_FILE_PATH"
URLS=""
for tag_prefix in $(echo "${{ env.QUAY_WORKBENCH_IMAGES_TAG_PREFIX_CSV }}" | tr ',' '\n'); do
LATEST_TAG=$(curl -s "https://quay.io/api/v1/repository/${{ env.QUAY_WORKBENCH_IMAGES_REPOSITORY}}/tag/?onlyActiveTags=true" | \
jq -r ".tags | map(select(.name | startswith(\"${tag_prefix}\"))) | .[].name" | \
sort -r | head -n 1)
echo "Latest tag: $LATEST_TAG"
CONTAINER_IMAGE=ghcr.io/${{ github.repository }}/workbench-images:${LATEST_TAG}${TAG_SUFFIX}
echo "Build container image: $CONTAINER_IMAGE"
docker build -t ${CONTAINER_IMAGE} -f - . <<EOF
FROM quay.io/${{ env.QUAY_WORKBENCH_IMAGES_REPOSITORY}}:${LATEST_TAG}
COPY $WHL_FILE_PATH /tmp/
RUN pip uninstall -y odh-elyra \
&& pip install /tmp/$WHL_FILE_NAME \
&& jupyter labextension list
EOF
[ -z "${URLS}" ] && URLS="${CONTAINER_IMAGE}" || URLS="${URLS},${CONTAINER_IMAGE}"
echo "Publish image to registry"
docker push ${CONTAINER_IMAGE}
echo "Show container image information"
docker images
echo "Clean up resources"
docker system prune -af
echo "urls=${URLS}" >> "$GITHUB_OUTPUT"
done
- name: Print container image URLs
run: |
echo ${{ steps.build-notebook-images.outputs.urls }} | tr ',' '\n'
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: elyra_build_artifacts
Expand Down
31 changes: 31 additions & 0 deletions .github/workflows/purge-ghcr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: 'Purge old ghcr.io test images periodically'

on:
workflow_dispatch:
inputs:
dry_run:
type: boolean
default: true
description: 'Do a dry run?'
schedule:
- cron: '0 5 * * *' # at 05:00 UTC every day

permissions:
packages: write

jobs:
clean:
runs-on: ubuntu-latest
name: Delete old test images
steps:
- uses: snok/container-retention-policy@4f22ef80902ad409ed55a99dc5133cc1250a0d03 # v3.0.0
with:
account: ${{ (github.repository_owner == github.actor) && 'user' || github.repository_owner }}
token: ${{ secrets.GITHUB_TOKEN }}
image-names: |
${{ github.event.repository.name }}/workbench-images
image-tags: '*'
cut-off: '3w'
dry-run: ${{ inputs.dry_run || false }}
env:
RUST_BACKTRACE: 1
23 changes: 23 additions & 0 deletions .github/workflows/scripts/free_gha_space.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/bin/bash

df -h

sudo apt-get update
sudo apt-get remove -y '^dotnet-.*'
sudo apt-get remove -y '^llvm-.*'
sudo apt-get remove -y 'php.*'
sudo apt-get remove -y '^mongodb-.*'
sudo apt-get autoremove -y
sudo apt-get clean
sudo rm -rf /usr/local/.ghcup &
sudo rm -rf /usr/local/lib/android &
sudo rm -rf /usr/local/share/boost &
sudo rm -rf /usr/share/dotnet &
sudo rm -rf /opt/ghc &
sudo rm -rf /opt/hostedtoolcache/CodeQL &

sudo docker image prune --all --force &

wait

df -h

0 comments on commit ce1211b

Please sign in to comment.