test(apps): fix dashboard/voucher/consent tests #17
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: "E2e test" | ||
on: | ||
pull_request: | ||
branches: [main] | ||
jobs: | ||
build: | ||
name: parallel buck2 builds | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
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: | ||
- 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: Build | ||
run: | | ||
nix develop -c buck2 build ${{ matrix.target }} | ||
- uses: actions/cache/save@v4 | ||
with: | ||
path: | | ||
~/.buck2 | ||
buck-out | ||
.buck-cache | ||
prebuilt | ||
installed | ||
target | ||
.buckd | ||
buck-out/cache | ||
key: b2-${{ matrix.target }}-${{ github.sha:(-4) }} | ||
Check failure on line 56 in .github/workflows/e2e-test2.yml GitHub Actions / E2e testInvalid workflow file
|
||
enableCrossOsArchive: true | ||
tests: | ||
name: execute via bats | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 25 | ||
needs: build | ||
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 | ||
- uses: actions/cache/restore@v4 | ||
with: | ||
path: | | ||
~/.buck2 | ||
buck-out | ||
.buck-cache | ||
prebuilt | ||
installed | ||
target | ||
.buckd | ||
buck-out/cache | ||
key: | | ||
b2-//core/api-${{ github.sha:(-4) }} | ||
b2-//core/api-ws-server-${{ github.sha:(-4) }} | ||
b2-//core/api-trigger-${{ github.sha:(-4) }} | ||
b2-//core/api-exporter-${{ github.sha:(-4) }} | ||
b2-//apps/dashboard-${{ github.sha:(-4) }} | ||
b2-//apps/consent-${{ github.sha:(-4) }} | ||
b2-//apps/pay-${{ github.sha:(-4) }} | ||
b2-//apps/admin-panel-${{ github.sha:(-4) }} | ||
b2-//apps/map-${{ github.sha:(-4) }} | ||
b2-//apps/voucher-${{ github.sha:(-4) }} | ||
b2-//core/api-keys-${{ github.sha:(-4) }} | ||
b2-//core/notifications-${{ github.sha:(-4) }} | ||
b2-//bats/helpers/callback:run-${{ github.sha:(-4) }} | ||
b2-//bats/helpers/subscriber:run-${{ github.sha:(-4) }} | ||
b2-//bats/helpers/totp:generate-${{ github.sha:(-4) }} | ||
restore-keys: | | ||
buck2-${{ runner.os }}- | ||
fail-on-cache-miss: true | ||
- name: Run bats tests | ||
run: | | ||
nix develop -c buck2 build //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 | ||
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 |