From 6910d27c6dd2b5ad553a2d544ffe88ce69bf08d0 Mon Sep 17 00:00:00 2001 From: Marcos Bento Date: Sun, 6 Oct 2024 19:12:47 +0100 Subject: [PATCH] Rename workflow to sandbox --- .github/workflows/{hummm.yml => sandbox.yml} | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) rename .github/workflows/{hummm.yml => sandbox.yml} (72%) diff --git a/.github/workflows/hummm.yml b/.github/workflows/sandbox.yml similarity index 72% rename from .github/workflows/hummm.yml rename to .github/workflows/sandbox.yml index 26072f593..7bdc7dbff 100644 --- a/.github/workflows/hummm.yml +++ b/.github/workflows/sandbox.yml @@ -9,8 +9,8 @@ on: - '**' jobs: - hummm: - name: hummmm + sandbox: + name: Sandbox if: github.repository_owner == 'marcosbento' runs-on: ubuntu-latest @@ -24,11 +24,12 @@ jobs: strategy: matrix: - buildtype: - - Debug + preset: - - linux.ubuntu.all.gcc13.release - - linux.ubuntu.all.gcc14.release + - linux.ubuntu.all.gcc13 + - linux.ubuntu.all.gcc14 + buildtype: + - release steps: @@ -46,14 +47,14 @@ jobs: - name: Configure run: | cd ecflow - cmake --preset ${{ matrix.preset }} + cmake --preset ${{ matrix.preset }}.${{ matrix.buildtype }} - name: Build run: | cd ecflow - cmake --build --preset ${{ matrix.preset }} + cmake --build --preset ${{ matrix.preset }}.${{ matrix.buildtype }} - name: Test run: | cd ecflow - ctest --preset ${{ matrix.preset }} -L nighly \ No newline at end of file + ctest --preset ${{ matrix.preset }}.${{ matrix.buildtype }} -L nighly \ No newline at end of file