Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions .github/workflows/build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
with:
buildkitd-flags: "cache-from: type=gha cache-to: type=gha,mode=max"

- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 10 # get enough so we have a Git history, but not everything
fetch-tags: true
Expand Down Expand Up @@ -89,8 +89,6 @@ jobs:

- name: Build and push public images to Docker Hub
run: |
# FIXME: GitHub provides compose version enabling bake but timing out
export COMPOSE_BAKE=false
./bin/build-release-image.sh --push
timeout-minutes: 90
env:
Expand Down Expand Up @@ -149,8 +147,6 @@ jobs:
id-token: write

steps:
- uses: docker/setup-buildx-action@v3

- id: gcp_auth
uses: google-github-actions/auth@v2
with:
Expand Down
13 changes: 4 additions & 9 deletions .github/workflows/pull_request_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install chromium-browser xvfb
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-node@v4
with:
node-version: 20
Expand All @@ -29,19 +29,14 @@ jobs:
test-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.13" # matches current Python in production
- uses: actions/checkout@v5
- name: "Run Python tests (on Docker)"
run: |
# FIXME: GitHub provides compose version enabling bake but timing out
export COMPOSE_BAKE=false
make clean test-image
CONTAINER_ID=$(docker ps -alq)
docker cp $CONTAINER_ID:/app/python_coverage .
timeout-minutes: 30
- name: Store coverage as an artifact
timeout-minutes: 60
- name: "Store coverage as an artifact"
uses: actions/upload-artifact@v4
with:
name: coverage-results
Expand Down
Loading