Skip to content

Commit

Permalink
ci(mac): clean actions
Browse files Browse the repository at this point in the history
close #165
  • Loading branch information
hyoklee committed Mar 16, 2024
1 parent 7cdf130 commit da1e2a1
Show file tree
Hide file tree
Showing 11 changed files with 39 additions and 74 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/mac-auto-mpich.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: mac autotools mpich
name: mac auto mpich

on:
push:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: mac autotools parallel
name: mac auto ompi

on:
push:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: mac CMake fortran java parallel mpich
name: mac ninja clang h f j mpich

on:
workflow_dispatch:
Expand Down Expand Up @@ -43,7 +43,6 @@ jobs:
uses: actions/checkout@v4.1.1

- name: Configure
if: matrix.generator != 'autogen'
run: |
which gfortran
export FC="$(which gfortran)"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
name: mac CMake java parallel threadsafe
name: mac ninja clang j ompi ts

on:
workflow_dispatch:
push:
branches: [ develop ]
on: [push, pull_request]

jobs:
build:
strategy:
matrix:
name: ["macOS Latest Clang"]
name: ["mac ninja clang j ompi ts"]
include:
- name: "macOS Latest Clang"
- name: "mac ninja clang j ompi ts"
artifact: "macOS.tar.xz"
os: macos-latest
build_type: "Release"
Expand All @@ -31,43 +28,29 @@ jobs:

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Install Dependencies (Windows)
run: choco install ninja
if: matrix.os == 'windows-latest'
- name: Install Dependencies (macOS)
run: brew install ninja openmpi libaec
if: matrix.os == 'macos-latest'
- name: Set environment for MSVC (Windows)
if: matrix.os == 'windows-latest'
run: |
# Set these env vars so cmake picks the correct compiler
echo "CXX=cl.exe" >> $GITHUB_ENV
echo "CC=cl.exe" >> $GITHUB_ENV

# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Get Sources
uses: actions/checkout@v4.1.1

- name: Configure
if: matrix.generator != 'autogen'
run: |
mkdir "${{ runner.workspace }}/build"
cd "${{ runner.workspace }}/build"
cmake ${{ matrix.generator }} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DCMAKE_TOOLCHAIN_FILE=${{ matrix.toolchain }} -DBUILD_SHARED_LIBS=ON -DHDF5_ENABLE_ALL_WARNINGS=ON -DHDF5_ENABLE_THREADSAFE:BOOL=${{ matrix.ts }} -DHDF5_BUILD_HL_LIB:BOOL=${{ matrix.hl }} -DHDF5_ENABLE_PARALLEL:BOOL=${{ matrix.parallel }} -DHDF5_BUILD_CPP_LIB:BOOL=${{ matrix.cpp }} -DHDF5_BUILD_FORTRAN=${{ matrix.fortran }} -DHDF5_BUILD_JAVA=${{ matrix.java }} -DMPIEXEC_MAX_NUMPROCS:STRING=2 -DHDF5_ENABLE_SZIP_SUPPORT:BOOL=OFF $GITHUB_WORKSPACE
shell: bash

- name: Build
if: matrix.generator != 'autogen'
run: cmake --build . --config ${{ matrix.build_type }}
working-directory: ${{ runner.workspace }}/build

- name: Test
if: matrix.generator != 'autogen'
run: ctest --build . -C ${{ matrix.build_type }} -V
working-directory: ${{ runner.workspace }}/build

- name: Upload
if: matrix.generator != 'autogen'
uses: actions/upload-artifact@v3
with:
name: my-artifact
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
name: mac CMake java parallel
name: mac ninja clang j ompi

on:
workflow_dispatch:
push:
branches: [ develop ]
on: [push, pull_request]

jobs:
build:
strategy:
matrix:
name: ["macOS Latest Clang"]
name: ["mac ninja clang j ompi"]
include:
- name: "macOS Latest Clang"
- name: "mac ninja clang j ompi"
artifact: "macOS.tar.xz"
os: macos-latest
build_type: "Release"
Expand All @@ -31,43 +28,28 @@ jobs:

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Install Dependencies (Windows)
run: choco install ninja
if: matrix.os == 'windows-latest'
- name: Install Dependencies (macOS)
- name: Install Dependencies
run: brew install ninja openmpi libaec
if: matrix.os == 'macos-latest'
- name: Set environment for MSVC (Windows)
if: matrix.os == 'windows-latest'
run: |
# Set these env vars so cmake picks the correct compiler
echo "CXX=cl.exe" >> $GITHUB_ENV
echo "CC=cl.exe" >> $GITHUB_ENV

# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Get Sources
uses: actions/checkout@v4.1.1

- name: Configure
if: matrix.generator != 'autogen'
run: |
mkdir "${{ runner.workspace }}/build"
cd "${{ runner.workspace }}/build"
cmake ${{ matrix.generator }} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DCMAKE_TOOLCHAIN_FILE=${{ matrix.toolchain }} -DBUILD_SHARED_LIBS=ON -DHDF5_ENABLE_ALL_WARNINGS=ON -DHDF5_ENABLE_THREADSAFE:BOOL=${{ matrix.ts }} -DHDF5_BUILD_HL_LIB:BOOL=${{ matrix.hl }} -DHDF5_ENABLE_PARALLEL:BOOL=${{ matrix.parallel }} -DHDF5_BUILD_CPP_LIB:BOOL=${{ matrix.cpp }} -DHDF5_BUILD_FORTRAN=${{ matrix.fortran }} -DHDF5_BUILD_JAVA=${{ matrix.java }} -DMPIEXEC_MAX_NUMPROCS:STRING=2 -DHDF5_ENABLE_SZIP_SUPPORT:BOOL=OFF $GITHUB_WORKSPACE
shell: bash

- name: Build
if: matrix.generator != 'autogen'
run: cmake --build . --config ${{ matrix.build_type }}
working-directory: ${{ runner.workspace }}/build

- name: Test
if: matrix.generator != 'autogen'
run: ctest --build . -C ${{ matrix.build_type }} -V
working-directory: ${{ runner.workspace }}/build

- name: Upload
if: matrix.generator != 'autogen'
uses: actions/upload-artifact@v3
with:
name: my-artifact
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: mac-13 CMake clang15 debug gfortran mpich sf
name: mac13 ninja clang15 f h d mpich sf

on:
workflow_dispatch:
push:
branches: [ develop ]
on: [push, pull_request]

jobs:
build:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: mac-13 CMake clang17 debug flang java mpich sf
name: mac13 ninja clang17 fl d f mpich sf

on:
workflow_dispatch:
Expand All @@ -17,9 +17,9 @@ jobs:
build_type: "Release"
cpp: OFF
fortran: ON
java: ON
java: OFF
ts: OFF
hl: ON
hl: OFF
parallel: ON
toolchain: "config/toolchain/clang.cmake"
generator: "-G Ninja"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: mac-13 CMake ROS3
name: mac13 sh s3

on:
workflow_dispatch:
Expand All @@ -7,7 +7,7 @@ on:

jobs:
build:
name: macos-13 CMake ROS3
name: mac13 sh s3
runs-on: macos-13
steps:
- name: Install Dependencies
Expand Down
Original file line number Diff line number Diff line change
@@ -1,23 +1,20 @@
name: mac-13 CMake Xcode clang15 debug mpich sf
name: mac13 xcode clang15 d f mpich s3 sf

on:
workflow_dispatch:
push:
branches: [ develop ]
on: [push, pull_request]

jobs:
build:
name: Generate Xcode project
name: mac13 xcode clang15 d mpich sf
runs-on: macos-13
steps:
- uses: actions/checkout@v4.1.1
- name: Install Dependencies
run: brew install curl openssl libaec mpich bash

- name: Set Bash as the default shell
- name: Set Bash
run: echo "/usr/local/bin/bash" >> ~/.bashrc

- name: Generate Xcode project
- name: Test HDF5
shell: bash
run: |
export OPENSSL_ROOT_DIR=/usr/local/Cellar/openssl@3/3.1.1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: mac14 h j p
name: mac14 ninja h j ompi cd

on: [push, pull_request]

jobs:
build:
name: "mac14 h j p"
name: "mac14 ninja h j ompi cd"
runs-on: macos-14
steps:
- name: Install Dependencies
Expand Down
19 changes: 13 additions & 6 deletions WATCHME.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
| Test | Status |
| --------| ------ |
| OpenBSD | [![auto](https://github.com/hyoklee/hdf5/actions/workflows/auto.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/auto.yml) [![d](https://github.com/hyoklee/hdf5/actions/workflows/d.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/d.yml) [![r](https://github.com/hyoklee/hdf5/actions/workflows/r.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/r.yml) |
| macOS | [![mac14 h j p](https://github.com/hyoklee/hdf5/actions/workflows/mac14-h-j-p.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/mac14-h-j-p.yml)|
| macOS | [![mac14 ninja h j ompi](https://github.com/hyoklee/hdf5/actions/workflows/mac14-ninja-h-j-ompi-cd.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/mac14-ninja-h-j-ompi-cd.yml) |
| MSYS2 | [![msys2](https://github.com/hyoklee/hdf5/actions/workflows/msys2.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/msys2.yml) |
| Cygwin | [![auto](https://github.com/hyoklee/hdf5/actions/workflows/cyg-auto.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/cyg-auto.yml) [![cmake](https://github.com/hyoklee/hdf5/actions/workflows/cyg.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/cyg.yml) |
| iOS | [![mac13 ios](https://github.com/hyoklee/hdf5/actions/workflows/ios.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/ios.yml) |
Expand All @@ -35,8 +35,8 @@
| Test | Status |
| -----| ------ |
| aocc | [![linux autotools aocc ompi](https://github.com/hyoklee/hdf5/actions/workflows/lin-auto-aocc-ompi.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/lin-auto-aocc-ompi.yml) [![linux autotools aocc f ompi](https://github.com/hyoklee/hdf5/actions/workflows/linux-auto-aocc-f-ompi.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/linux-auto-aocc-f-ompi.yml) [![linux autotools aocc d f ompi](https://github.com/hyoklee/hdf5/actions/workflows/linux-auto-aocc-d-f-ompi.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/linux-auto-aocc-d-f-ompi.yml)|
| clang | [![mac-13 CMake clang15 debug gfortran mpich sf](https://github.com/hyoklee/hdf5/actions/workflows/mac-clang15-cmake.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/mac-clang15-cmake.yml) [![mac13 clang15 r f mpich sf](https://github.com/hyoklee/hdf5/actions/workflows/mac13-clang15-r-f-mpich-sf.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/mac13-clang15-r-f-mpich-sf.yml) [![mac-13 CMake Xcode clang15 debug mpich sf](https://github.com/hyoklee/hdf5/actions/workflows/mac-clang15-xcode.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/mac-clang15-xcode.yml) [![mac CMake java parallel](https://github.com/hyoklee/hdf5/actions/workflows/mac-cmake.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/mac-cmake.yml) [![mac CMake java parallel threadsafe](https://github.com/hyoklee/hdf5/actions/workflows/mac-cmake-ts.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/mac-cmake-ts.yml) |
| flang | [![mac CMake flang java parallel mpich](https://github.com/hyoklee/hdf5/actions/workflows/mac-cmake-flang-mpich.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/mac-cmake-flang-mpich.yml) |
| clang | [![mac13 ninja clang15 d h f mpich sf](https://github.com/hyoklee/hdf5/actions/workflows/mac13-ninja-clang15-d-h-f-mpich-sf.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/mac13-ninja-clang15-d-h-f-mpich-sf.yml) [![mac13 clang15 r f mpich sf](https://github.com/hyoklee/hdf5/actions/workflows/mac13-clang15-r-f-mpich-sf.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/mac13-clang15-r-f-mpich-sf.yml) [![mac13 xcode clang15 d mpich s3 sf](https://github.com/hyoklee/hdf5/actions/workflows/mac13-xcode-clang15-d-mpich-s3-sf.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/mac13-xcode-clang15-d-mpich-s3-sf.yml) [![mac ninja clang j ompi](https://github.com/hyoklee/hdf5/actions/workflows/mac-ninja-clang-j-ompi.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/mac-ninja-clang-j-ompi.yml) |
| flang | [![mac13 ninja clang17 fl d f mpich sf](https://github.com/hyoklee/hdf5/actions/workflows/mac13-ninja-clang17-fl-d-f-mpich-sf.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/mac13-ninja-clang17-fl-d-f-mpich-sf.yml) |
| gcc_arm | [![lin gcc_arm64](https://github.com/hyoklee/hdf5/actions/workflows/lin-gcc_arm64.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/lin-gcc_arm64.yml) [![lin gcc_arm64 cpp](https://github.com/hyoklee/hdf5/actions/workflows/lin-gcc_arm64-cpp.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/lin-gcc_arm64-cpp.yml) |
| gcc_min | [![lin gcc_min](https://github.com/hyoklee/hdf5/actions/workflows/lin-gcc_min.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/lin-gcc_min.yml) |
| icx | [![linux CMake icx](https://github.com/hyoklee/hdf5/actions/workflows/linux-icx.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/linux-icx.yml) [![lin auto icx](https://github.com/hyoklee/hdf5/actions/workflows/lin-auto-icx.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/lin-auto-icx.yml) [![linux autotools icx debug](https://github.com/hyoklee/hdf5/actions/workflows/linux-icx-auto-debug.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/linux-icx-auto-debug.yml) [![linux CMake icx sf](https://github.com/hyoklee/hdf5/actions/workflows/linux-icx-sf.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/linux-icx-sf.yml) [![linux autotools icx sf debug](https://github.com/hyoklee/hdf5/actions/workflows/linux-icx-auto-sf-debug.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/linux-icx-auto-sf-debug.yml) [![win ninja icx](https://github.com/hyoklee/hdf5/actions/workflows/win-ninja-icx.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/win-ninja-icx.yml) [![windows ninja icx p](https://github.com/hyoklee/hdf5/actions/workflows/win-ninja-icx-p.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/win-ninja-icx-p.yml) |
Expand All @@ -58,19 +58,26 @@
| Test | Status |
| ------| ------ |
| Julia | [![lin jl](https://github.com/hyoklee/hdf5/actions/workflows/lin-jl.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/lin-jl.yml) [![lin auto jl](https://github.com/hyoklee/hdf5/actions/workflows/lin-auto-jl.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/lin-auto-jl.yml) |
| Python | [![lin spack h5py](https://github.com/hyoklee/hdf5/actions/workflows/lin-spack-h5py.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/lin-spack-h5py.yml) [![mac spack h5py](https://github.com/hyoklee/hdf5/actions/workflows/mac-spack-h5py.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/mac-spack-h5py.yml) |

### Parallel

| Test | Status |
| --------| ------ |
| OpenMPI | [![lin auto ompi ts dr mr s3 sf](https://github.com/hyoklee/hdf5/actions/workflows/lin-auto-ompi-ts-dr-mr-s3-sf.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/lin-auto-ompi-ts-dr-mr-s3-sf.yml) [![linux autotools parallel vfds](https://github.com/hyoklee/hdf5/actions/workflows/linux-auto.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/linux-auto.yml) [![lin spack f ompi](https://github.com/hyoklee/hdf5/actions/workflows/lin-spack-f-ompi.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/lin-spack-f-ompi.yml) [![mac autotools parallel](https://github.com/hyoklee/hdf5/actions/workflows/mac-auto.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/mac-auto.yml) |
| MPICH | [![mac CMake fortran java parallel mpich](https://github.com/hyoklee/hdf5/actions/workflows/mac-cmake-mpich.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/mac-cmake-mpich.yml) |
| OpenMPI | [![lin auto ompi ts dr mr s3 sf](https://github.com/hyoklee/hdf5/actions/workflows/lin-auto-ompi-ts-dr-mr-s3-sf.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/lin-auto-ompi-ts-dr-mr-s3-sf.yml) [![linux autotools parallel vfds](https://github.com/hyoklee/hdf5/actions/workflows/linux-auto.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/linux-auto.yml) [![lin spack f ompi](https://github.com/hyoklee/hdf5/actions/workflows/lin-spack-f-ompi.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/lin-spack-f-ompi.yml) [![mac auto ompi](https://github.com/hyoklee/hdf5/actions/workflows/mac-auto-ompi.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/mac-auto-ompi.yml) |
| MPICH | [![mac auto mpich](https://github.com/hyoklee/hdf5/actions/workflows/mac-auto-mpich.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/mac-auto-mpich.yml) [![mac ninja clang h f j mpich](https://github.com/hyoklee/hdf5/actions/workflows/mac-ninja-clang-h-f-j-mpich.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/mac-ninja-clang-h-f-j-mpich.yml) |

### Thread-Safety

| Test | Status |
| -----| ------ |
| ts | [![mac ninja clang j ompi ts](https://github.com/hyoklee/hdf5/actions/workflows/mac-ninja-clang-j-ompi-ts.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/mac-ninja-clang-j-ompi-ts.yml) |

### VFDs

| Test | Status |
| -----| ------ |
| S3 | [![mac-13 CMake ROS3](https://github.com/hyoklee/hdf5/actions/workflows/mac-cmake-ros3.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/mac-cmake-ros3.yml) |
| S3 | [![mac13 sh s3](https://github.com/hyoklee/hdf5/actions/workflows/mac13-sh-s3.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/mac13-sh-s3.yml) |
| Subfiling | [![lin nvhpc f p sf](https://github.com/hyoklee/hdf5/actions/workflows/lin-nvhpc-f-p-sf.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/lin-nvhpc-f-p-sf.yml) [![lin auto nvhpc f sh p sf](https://github.com/hyoklee/hdf5/actions/workflows/lin-auto-nvhpc-f-sh-p-sf.yml/badge.svg)](https://github.com/hyoklee/hdf5/actions/workflows/lin-auto-nvhpc-f-sh-p-sf.yml) |

## Extra
Expand Down

0 comments on commit da1e2a1

Please sign in to comment.