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 f6415eb
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/hummm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,20 @@ jobs:
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 f6415eb

Please sign in to comment.