Skip to content

Attempt to configure project #9

Attempt to configure project

Attempt to configure project #9

Workflow file for this run

name: hummm
on:
# Trigger the workflow on push to master or develop, except tag creation
push:
branches:
- 'feature/**'
tags-ignore:
- '**'
jobs:
hummm:
name: hummmm
runs-on: ubuntu-latest
container:
image: marcosbento/ecflow:ubuntu_2404_amd64
credentials:
username: marcosbento
password: ${{ secrets.DOCKER_REGISTRY_TOKEN }}
strategy:
matrix:
buildtype:
- Debug
profile:
- gcc8
- gcc13
steps:
- name: Checkout ecbuild
uses: actions/checkout@v4
with:
repository: ecmwf/ecbuild
path: ecbuild
- name: Checkout ecflow
uses: actions/checkout@v4
with:
path: ecflow
- name: Run a script
run: |
echo Hello, world! My profile is ${{ matrix.profile }}
echo Repo owner is ${{ github.repository_owner }}
- name: Configure
run: |
cd ecflow
cmake -B build.${{ matrix.profile }} -S . -DCMAKE_BUILD_TYPE=${{ matrix.buildtype }}