From d242580803ef8c7d37d9f91b87abcaf076d2bb7e Mon Sep 17 00:00:00 2001 From: Hugo McNally Date: Thu, 15 Aug 2024 07:54:26 +0100 Subject: [PATCH] ci: Moved software tests until after the simulator build --- .github/workflows/ci.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f809a6f3..461447cdb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,15 +61,18 @@ jobs: run: nix fmt -- . --check - name: Check Documentation Links - run: nix run .#lint-markdown + run: nix run .#lint-markdown -L - - name: Nix Checks - run: nix flake check -L + - name: Simulator Lint + run: nix build .#checks.x86_64-linux.sonata-simulator-lint -L - name: Build Documentation run: | - nix build .#sonata-documentation + nix build .#sonata-documentation -L - name: Build Verilator simulator run: | - nix build .#sonata-simulator + nix build .#sonata-simulator -L + + - name: Nix Checks + run: nix flake check -L