From f227f81827980eb4ea26761b923a515558a7911d Mon Sep 17 00:00:00 2001 From: Albin Johansson Date: Sun, 29 Oct 2023 00:44:19 +0200 Subject: [PATCH] Make CI jobs run integration tests --- .github/workflows/macos.yml | 4 ++++ .github/workflows/ubuntu.yml | 6 +++++- .github/workflows/windows.yml | 6 +++++- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 71002171b1..4efc9d63dc 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -65,3 +65,7 @@ jobs: - name: Run TMJ format unit tests working-directory: ./build/debug run: ./tactile-tmj-format-test + + - name: Run integration tests + working-directory: ./build/debug + run: ./tactile-integration-test diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 1835000989..2564d1c9f8 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -86,4 +86,8 @@ jobs: - name: Run TMJ format unit tests working-directory: ./build/debug - run: ./tactile-tmj-format-test \ No newline at end of file + run: ./tactile-tmj-format-test + + - name: Run integration tests + working-directory: ./build/debug + run: ./tactile-integration-test \ No newline at end of file diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index f0e951b16a..f2d4d04166 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -65,4 +65,8 @@ jobs: - name: Run TMJ format unit tests working-directory: ./build/debug - run: .\tactile-tmj-format-test.exe \ No newline at end of file + run: .\tactile-tmj-format-test.exe + + - name: Run integration tests + working-directory: ./build/debug + run: .\tactile-integration-test.exe \ No newline at end of file