diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2022-12-15 15:06:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-15 15:06:37 (GMT) |
commit | 2c94c573d6b70417254f8a425f424e5aebaafbd0 (patch) | |
tree | 9c8475f9cb5c979d74b25abc2b7cb4ef049605f3 /.github/workflows | |
parent | 23be40ca4fce00a2b74a85d49d9b7ea4b6279b43 (diff) | |
download | hdf5-2c94c573d6b70417254f8a425f424e5aebaafbd0.zip hdf5-2c94c573d6b70417254f8a425f424e5aebaafbd0.tar.gz hdf5-2c94c573d6b70417254f8a425f424e5aebaafbd0.tar.bz2 |
Updates the special Autotools builds in main.yml
The missing leading space causes the builds to always use the default instead of the specified build mode.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/main.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f41b7c8..08807c3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -177,7 +177,7 @@ jobs: - enabled: false text: "" build_mode: - - text: "DBG" + - text: " DBG" cmake: "Debug" autotools: "debug" @@ -199,7 +199,7 @@ jobs: - enabled: false text: "" build_mode: - - text: "DBG" + - text: " DBG" cmake: "Debug" autotools: "debug" @@ -221,7 +221,7 @@ jobs: - enabled: false text: "" build_mode: - - text: "DBG" + - text: " DBG" cmake: "Debug" autotools: "debug" @@ -243,7 +243,7 @@ jobs: - enabled: false text: "" build_mode: - - text: "DBG" + - text: " DBG" cmake: "Debug" autotools: "debug" @@ -265,7 +265,7 @@ jobs: - enabled: false text: "" build_mode: - - text: "DBG" + - text: " DBG" cmake: "Debug" autotools: "debug" @@ -287,7 +287,7 @@ jobs: - enabled: false text: "" build_mode: - - text: "DBG" + - text: " DBG" cmake: "Debug" autotools: "debug" @@ -309,7 +309,7 @@ jobs: - enabled: false text: "" build_mode: - - text: "REL" + - text: " REL" cmake: "Release" autotools: "production" |