Skip to content

Commit

Permalink
Rename workflow to sandbox
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosbento committed Oct 6, 2024
1 parent 117b23b commit 6910d27
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/hummm.yml → .github/workflows/sandbox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ on:
- '**'

jobs:
hummm:
name: hummmm
sandbox:
name: Sandbox
if: github.repository_owner == 'marcosbento'
runs-on: ubuntu-latest

Expand All @@ -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:

Expand All @@ -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
ctest --preset ${{ matrix.preset }}.${{ matrix.buildtype }} -L nighly

0 comments on commit 6910d27

Please sign in to comment.