Notebooks Healthcheck #4
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: Notebooks Healthcheck | |
on: | |
schedule: | |
- cron: '0 0 * * 5' # Run every Friday at midnight | |
workflow_dispatch: | |
jobs: | |
run-notebook-tests: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout this repository | |
uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- name: Checkout actions repository | |
uses: actions/checkout@v4 | |
with: | |
repository: Exabyte-io/actions | |
token: ${{ secrets.BOT_GITHUB_TOKEN }} | |
path: actions | |
- name: Login to GitHub Container registry | |
uses: docker/login-action@v3 | |
env: | |
GITHUB_USER: ${{ github.actor }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
registry: ghcr.io | |
username: $GITHUB_USER | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Docker build | |
uses: ./.github/workflows/docker-build-test | |
with: | |
skip_tests: 'true' | |
- name: Run notebooks healthcheck | |
shell: bash -l {0} | |
run: | | |
docker run -d -p 3001:3001 --name=materials-designer materials-designer:latest | |
while ! docker logs materials-designer 2>&1 | grep "Compiled"; do | |
failed=$(docker logs materials-designer 2>&1 | grep "Failed") | |
if [[ "$failed" != "" ]]; then | |
docker logs materials-designer 2>&1 | |
exit 1 | |
fi | |
sleep 5 | |
done | |
docker run --network=host materials-designer-test npm run test:healthcheck | |