Skip to content

Commit

Permalink
test: parallelize e2e builds in gh action
Browse files Browse the repository at this point in the history
  • Loading branch information
dolcalmi committed Oct 22, 2024
1 parent e2ca02d commit 44fbbab
Showing 1 changed file with 114 additions and 0 deletions.
114 changes: 114 additions & 0 deletions .github/workflows/e2e-test2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
name: "E2e test"

on:
pull_request:
branches: [main]

jobs:
build:
name: parallel buck2 builds
runs-on: ubuntu-latest
timeout-minutes: 25
strategy:
matrix:
target:
- //core/api
- //core/api-ws-server
- //core/api-trigger
- //core/api-exporter
- //apps/dashboard
- //apps/consent
- //apps/pay
- //apps/admin-panel
- //apps/map
- //apps/voucher
- //core/api-keys
- //core/notifications
- //bats/helpers/callback:run
- //bats/helpers/subscriber:run
- //bats/helpers/totp:generate
fail-fast: false

steps:
- name: Maximize build space
uses: easimon/maximize-build-space@master
with:
root-reserve-mb: 15360
temp-reserve-mb: 12288

- uses: actions/checkout@v4

- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v14

- name: Run the Magic Nix Cache
uses: DeterminateSystems/magic-nix-cache-action@v8

- name: Setup Buck cache
uses: actions/cache@v3
with:
path: |
~/.buck2
buck-out
.buck-cache
prebuilt
installed
target
.buckd
buck-out/cache
key: ${{ runner.os }}-buck2-${{ hashFiles('**/BUCK', '**/BUCK.bzl', '**/MODULE.bazel', '**/deps.bzl') }}
restore-keys: |
${{ runner.os }}-buck2-
- name: Build ${{ matrix.target }}
run: |
# Ensure buck daemon is stopped before building
nix develop -c buck2 kill
nix develop -c buck2 build ${{ matrix.target }}
tests:
needs: build
name: execute via bats
runs-on: ubuntu-latest
timeout-minutes: 25
steps:
- uses: actions/checkout@v4

- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v14

- name: Run the Magic Nix Cache
uses: DeterminateSystems/magic-nix-cache-action@v8

- name: Setup Buck cache
uses: actions/cache@v3
with:
path: |
~/.buck2
buck-out
.buck-cache
prebuilt
installed
target
.buckd
buck-out/cache
key: ${{ runner.os }}-buck2-${{ hashFiles('**/BUCK', '**/BUCK.bzl', '**/MODULE.bazel', '**/deps.bzl') }}
restore-keys: |
${{ runner.os }}-buck2-
- name: Run bats tests
run: |
# Ensure buck daemon is stopped before running tests
nix develop -c buck2 kill
nix develop -c bats --setup-suite-file bats/ci_setup_suite.bash -t bats/core/**
- name: Rename Tilt log
if: always()
run: mv bats/.e2e-tilt.log bats/e2e-tilt.log

- name: Upload Tilt log
if: always()
uses: actions/upload-artifact@v4
with:
name: Tilt log
path: bats/e2e-tilt.log

0 comments on commit 44fbbab

Please sign in to comment.