Skip to content

Commit

Permalink
Attempt to configure project
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosbento committed Oct 6, 2024
1 parent 58fd1ae commit 4aa0b50
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/hummm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,26 @@ jobs:
name: hummmm
runs-on: ubuntu-latest
container:
image: marcosbento/ecflow:ubuntu_2404
image: marcosbento/ecflow:ubuntu_2404_amd64
credentials:
username: marcosbento
password: ${{ secrets.DOCKER_REGISTRY_TOKEN }}
strategy:
matrix:
buildtype:
- Debug
profile:
- gcc8
- gcc13
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Run a one-line script
run: echo Hello, world! My profile is ${{ matrix.profile }}
- name: Run a script
run: |
echo Hello, world! My profile is ${{ matrix.profile }}
echo Repo owner is ${{ github.repository_owner }}
- name: Run a multi-line script
- name: Configure
run: |
echo Add other actions to build,
echo test, and deploy your project.
cmake -B build.${{ matrix.profile }} -S . -DCMAKE_BUILD_TYPE=${{ matrix.buildtype }}

0 comments on commit 4aa0b50

Please sign in to comment.