Skip to content

Merge pull request #1102 from eaidova/ea/merge_develop_2023 #4379

Merge pull request #1102 from eaidova/ea/merge_develop_2023

Merge pull request #1102 from eaidova/ea/merge_develop_2023 #4379

Workflow file for this run

# Build Docker image and test notebooks in Docker image
# Test script location: .docker/.s2i/bin/test
name: docker_treon
on:
workflow_dispatch:
schedule:
- cron: '30 3 * * *'
push:
branches:
- 'main'
paths:
- "Dockerfile"
- ".docker/**"
- ".github/workflows/*.yml"
- '.github/workflows/.env'
- 'notebooks/**.ipynb'
- 'notebooks/**.py'
- 'requirements.txt'
- '.ci/*requirements.txt'
pull_request:
branches:
- 'main'
- 'develop'
paths:
- "Dockerfile"
- ".docker/**"
- ".github/workflows/*.yml"
- '.github/workflows/.env'
- 'notebooks/**.ipynb'
- 'notebooks/**.py'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build_docker:
strategy:
fail-fast: false
runs-on: ubuntu-20.04
steps:
- name: Maximize build space
run: |
sudo rm -rf /usr/local/lib/android # will release about 10 GB if you don't need Android
sudo rm -rf /usr/share/dotnet # will release about 20GB if you don't need .NET
sudo rm -rf /opt/ghc
echo "Available storage:"
df -h
- uses: actions/checkout@v2
- name: Build Docker image
run: |
docker build . -t openvino_notebooks
- name: Test notebooks in Docker image
run: |
# Test script location: .docker/.s2i/bin/test
docker run --entrypoint /tmp/scripts/test openvino_notebooks