diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2022-12-12 15:32:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-12 15:32:01 (GMT) |
commit | 1da36c90b636f6cd1889338a61602582e5187f00 (patch) | |
tree | 5db67333a9973a5f41a7ad6efc9b0d1d2aa7b376 /.github | |
parent | 52854566ecad891ee60458777932539d3edab6e0 (diff) | |
download | hdf5-1da36c90b636f6cd1889338a61602582e5187f00.zip hdf5-1da36c90b636f6cd1889338a61602582e5187f00.tar.gz hdf5-1da36c90b636f6cd1889338a61602582e5187f00.tar.bz2 |
1.12 Correct requires setting for pkgconfig files #2280 (#2283)
* Correct requires setting for pkgconfig files #2280
* Change macos for CI
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/main.yml | 6 | ||||
-rw-r--r-- | .github/workflows/pr-check.yml | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2282a09..5d3e14d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -48,7 +48,7 @@ jobs: generator: "-G Ninja" - name: "macOS Latest Clang" artifact: "macOS.tar.xz" - os: macos-latest + os: macos-11 build_type: "Release" cpp: ON fortran: OFF @@ -109,7 +109,7 @@ jobs: generator: "-G Ninja" - name: "macOS TS Clang" artifact: "macOSTS.tar.xz" - os: macos-latest + os: macos-11 build_type: "Release" cpp: OFF fortran: OFF @@ -171,7 +171,7 @@ jobs: if: matrix.os == 'windows-latest' - name: Install Dependencies (macOS) run: brew install ninja - if: matrix.os == 'macos-latest' + if: matrix.os == 'macos-11' - name: Set environment for MSVC (Windows) if: matrix.os == 'windows-latest' run: | diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index 5dd923f..b48f835 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -47,7 +47,7 @@ jobs: generator: "-G Ninja" - name: "macOS Latest Clang" artifact: "macOS.tar.xz" - os: macos-latest + os: macos-11 build_type: "Release" cpp: ON fortran: OFF @@ -108,7 +108,7 @@ jobs: generator: "-G Ninja" - name: "macOS TS Clang" artifact: "macOSTS.tar.xz" - os: macos-latest + os: macos-11 build_type: "Release" cpp: OFF fortran: OFF @@ -170,7 +170,7 @@ jobs: if: matrix.os == 'windows-latest' - name: Install Dependencies (macOS) run: brew install ninja - if: matrix.os == 'macos-latest' + if: matrix.os == 'macos-11' - name: Set environment for MSVC (Windows) if: matrix.os == 'windows-latest' run: | |