Skip to content

fix some e2e tests #455

fix some e2e tests

fix some e2e tests #455

Workflow file for this run

name: push
on:
push:
paths-ignore:
- ".gitignore"
- ".github/images"
- "README.md"
jobs:
push:
if: "! contains(github.ref, 'refs/tags/')"
runs-on: ubuntu-20.04
env:
GENENV_FILE: ./config/genenv.ci.sh
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: cachix/install-nix-action@v24
with:
extra_nix_config: "system-features = nixos-test benchmark big-parallel kvm"
- run: printenv
- name: Lint
run: nix develop --command make lint
- name: Unit tests
run: nix develop --command make test/unit
- name: Integration tests
run: nix develop --command make test/integ
- name: Docker build
run: REMOVE_RESULT=0 nix develop --command make docker/build
- name: End to end tests
run: nix develop --command make -j test/e2e
- name: Store docker image as artifact
uses: actions/upload-artifact@v4
with:
name: docker-image
path: ./result