Skip to content

Commit e3068ab

Browse files
committed
v4.2.8
1 parent f3fdd9d commit e3068ab

File tree

3 files changed

+18
-11
lines changed

3 files changed

+18
-11
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ jobs:
7979
asset_name: h5fortran-${{ steps.get_version.outputs.VERSION }}-Linux.tar.zst
8080
asset_content_type: application/zip
8181

82+
8283
linux-shared:
8384
runs-on: ubuntu-latest
8485
timeout-minutes: 15
@@ -132,7 +133,7 @@ jobs:
132133
- name: build Examples
133134
run: cmake --build Examples/build
134135
- name: Test Examples
135-
- run: ctest --test-dir Examples/build -V
136+
run: ctest --test-dir Examples/build -V
136137

137138
linux-build-shared:
138139
needs: [linux-shared, linux-build-static]
@@ -152,7 +153,7 @@ jobs:
152153
- name: build Examples
153154
run: cmake --build Examples/build
154155
- name: Test Examples
155-
- run: ctest --test-dir Examples/build -V
156+
run: ctest --test-dir Examples/build -V
156157

157158

158159
linux-gcc7:

.github/workflows/ci_macos.yml

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,12 @@ jobs:
3737

3838
- run: cmake --install build
3939

40-
- run: cmake -S Examples -B Examples/build -Dh5fortran_ROOT=~
41-
- run: cmake --build Examples/build
42-
- run: ctest --test-dir Examples/build --output-on-failure
40+
- name: configure examples
41+
run: cmake -S Examples -B Examples/build -Dh5fortran_ROOT=~
42+
- name: build Examples
43+
run: cmake --build Examples/build
44+
- name: Test Examples
45+
run: ctest --test-dir Examples/build -V
4346

4447
- name: create package
4548
if: github.event.action == 'published'
@@ -88,9 +91,12 @@ jobs:
8891

8992
- run: cmake --install build
9093

91-
- run: cmake -S Examples -B Examples/build -Dh5fortran_ROOT=~
92-
- run: cmake --build Examples/build
93-
- run: ctest --test-dir Examples/build --output-on-failure
94+
- name: configure examples
95+
run: cmake -S Examples -B Examples/build -Dh5fortran_ROOT=~
96+
- name: build Examples
97+
run: cmake --build Examples/build
98+
- name: Test Examples
99+
run: ctest --test-dir Examples/build -V
94100

95101

96102
mac-build-static:
@@ -111,7 +117,7 @@ jobs:
111117
- name: build Examples
112118
run: cmake --build Examples/build
113119
- name: Test Examples
114-
- run: ctest --test-dir Examples/build -V
120+
run: ctest --test-dir Examples/build -V
115121

116122

117123
mac-build-shared:
@@ -132,4 +138,4 @@ jobs:
132138
- name: build Examples
133139
run: cmake --build Examples/build
134140
- name: Test Examples
135-
- run: ctest --test-dir Examples/build -V
141+
run: ctest --test-dir Examples/build -V

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.2.7
1+
4.2.8

0 commit comments

Comments
 (0)