diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index dd863c58517..9636ec49c71 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -120,3 +120,9 @@ jobs: uses: ./.github/workflows/msys2-cmake.yml with: build_mode: "Release" + + call-release-cmake-i386: + name: "CMake i386 Workflows" + uses: ./.github/workflows/i386-cmake.yml + with: + build_mode: "Release" diff --git a/.github/workflows/i386-cmake.yml b/.github/workflows/i386-cmake.yml new file mode 100644 index 00000000000..b7aa4cd3417 --- /dev/null +++ b/.github/workflows/i386-cmake.yml @@ -0,0 +1,67 @@ +name: hdf5 dev CMake i386 + +# Triggers the workflow on a call from another workflow +on: + workflow_call: + inputs: + build_mode: + description: "release vs. debug build" + required: true + type: string + +permissions: + contents: read + +jobs: + i386_build_and_test: + name: "i386 ${{ inputs.build_mode }}" + runs-on: ubuntu-latest + steps: + - name: Get Sources + uses: actions/checkout@v4.2.1 + + - name: setup alpine + uses: jirutka/setup-alpine@v1 + with: + arch: x86 + packages: > + build-base + libaec-dev + libgit2-dev + cmake + + - name: CMake Configure + shell: alpine.sh --root {0} + run: | + mkdir build + cd build + cmake -C ../config/cmake/cacheinit.cmake -G "Unix Makefiles" \ + --log-level=VERBOSE \ + -DCMAKE_BUILD_TYPE=${{ inputs.build_mode }} \ + -DHDF5_ENABLE_SZIP_SUPPORT:BOOL=OFF \ + -DHDF5_BUILD_CPP_LIB:BOOL=OFF \ + -DLIBAEC_USE_LOCALCONTENT:BOOL=OFF \ + -DZLIB_USE_LOCALCONTENT:BOOL=OFF \ + -DHDF5_BUILD_FORTRAN:BOOL=OFF \ + -DHDF5_BUILD_JAVA:BOOL=OFF \ + -DHDF5_ENABLE_PLUGIN_SUPPORT:BOOL=OFF \ + .. + + - name: CMake Build + shell: alpine.sh --root {0} + run: | + cmake --build . --parallel 3 --config ${{ inputs.build_mode }} + working-directory: build + + - name: CMake Run Tests + shell: alpine.sh --root {0} + run: | + ctest . -E H5_H5DUMP-h5ex_table_11 --parallel 2 -C ${{ inputs.build_mode }} -VV + working-directory: build + + - name: CMake Run Expected To Fail Tests + shell: alpine.sh --root {0} + run: | + ctest . -R H5_H5DUMP-h5ex_table_11 --parallel 2 -C ${{ inputs.build_mode }} -V + working-directory: build + continue-on-error: true