From 2ac45f362c6992257a58e7c34b3a48ce906658c4 Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Thu, 2 May 2024 14:41:00 -0600 Subject: [PATCH] Remove MacOS CI builds Homebrew has broken something and I cannot figure out how to fix it. Signed-off-by: Ralph Castain --- .github/workflows/builds.yaml | 50 ----------------------------------- 1 file changed, 50 deletions(-) diff --git a/.github/workflows/builds.yaml b/.github/workflows/builds.yaml index d02be34cef..099a95e37b 100644 --- a/.github/workflows/builds.yaml +++ b/.github/workflows/builds.yaml @@ -3,56 +3,6 @@ name: Build tests on: [pull_request] jobs: - macos: - runs-on: macos-latest - strategy: - matrix: - path: ['non-vpath', 'vpath'] - sphinx: ['no-sphinx', 'sphinx'] - steps: - - name: Install dependencies - run: brew install libevent hwloc autoconf automake libtool - - name: Git clone OpenPMIx - uses: actions/checkout@v3 - with: - submodules: recursive - repository: openpmix/openpmix - path: openpmix/master - ref: master - - name: Build OpenPMIx - run: | - cd openpmix/master - ./autogen.pl - ./configure --prefix=$RUNNER_TEMP/pmixinstall - make -j - make install - - name: Git clone PRRTE - uses: actions/checkout@v3 - with: - submodules: recursive - clean: false - - name: Build PRRTE - run: | - ./autogen.pl - - sphinx= - if test "${{ matrix.sphinx }}" = sphinx; then - pip3 install -r docs/requirements.txt - sphinx=--enable-sphinx - fi - - c=./configure - if test "${{ matrix.path }}" = vpath; then - mkdir build - cd build - c=../configure - fi - - $c --prefix=$RUNNER_TEMP/prteinstall --with-pmix=$RUNNER_TEMP/pmixinstall $sphinx - make -j - make install - make uninstall - ubuntu: runs-on: ubuntu-latest strategy: