Skip to content

Clean docker build cache to avoid no space left on device during Build Dev job #137

Clean docker build cache to avoid no space left on device during Build Dev job

Clean docker build cache to avoid no space left on device during Build Dev job #137

Workflow file for this run

---
name: "Gitpod"
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set TERM environment variable
run: echo "TERM=xterm" >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version-file: '.python-version' # Read python version from a file .python-version
- name: Install dependencies
run: make bootstrap
- name: Run Gitpod tests
uses: nick-invision/retry@v2
with:
max_attempts: 3
timeout_minutes: 10
command: make gitpod-tests