Skip to content

Commit

Permalink
Disable clang 16 and 17 osx jobs, until cling osx job issues resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
mcbarton authored Feb 7, 2024
1 parent b10004f commit b84c255
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,37 +40,37 @@ jobs:
cling: On
cling-version: '1.0'
cppyy: On
- name: osx13-x86-clang-clang17
os: macos-13
compiler: clang
clang-runtime: '17'
cling: Off
cppyy: On
- name: osx13-x86-clang-clang16
os: macos-13
compiler: clang
clang-runtime: '16'
cling: Off
cppyy: On
#- name: osx13-x86-clang-clang17
# os: macos-13
# compiler: clang
# clang-runtime: '17'
# cling: Off
# cppyy: On
#- name: osx13-x86-clang-clang16
# os: macos-13
# compiler: clang
# clang-runtime: '16'
# cling: Off
# cppyy: On
- name: os13-x86-clang-cling
os: macos-13
compiler: clang
clang-runtime: '13'
cling: On
cling-version: '1.0'
cppyy: On
- name: osx14-arm-clang-clang17
os: macos-14
compiler: clang
clang-runtime: '17'
cling: Off
cppyy: On
- name: osx14-arm-clang-clang16
os: macos-14
compiler: clang
clang-runtime: '16'
cling: Off
cppyy: On
#- name: osx14-arm-clang-clang17
# os: macos-14
# compiler: clang
# clang-runtime: '17'
# cling: Off
# cppyy: On
#- name: osx14-arm-clang-clang16
# os: macos-14
# compiler: clang
# clang-runtime: '16'
# cling: Off
# cppyy: On
- name: os14-arm-clang-cling
os: macos-14
compiler: clang
Expand Down Expand Up @@ -185,7 +185,6 @@ jobs:
brew link --overwrite "$pkg"
done
brew upgrade
brew install gold
- name: Restore Cache LLVM/Clang runtime build directory
uses: actions/cache/restore@v3
Expand Down Expand Up @@ -229,7 +228,8 @@ jobs:
-DCLANG_ENABLE_BOOTSTRAP=OFF \
-DCMAKE_INSTALL_PREFIX=../inst \
../llvm
cmake --build . --target ClangDriverOptions clang clang-repl openmp openmp-resource-headers --parallel ${{ env.ncpus }}
#FIXME: openmp-resource-headers not recognised target cling version, so removed for now
cmake --build . --target ClangDriverOptions clang clang-repl openmp --parallel ${{ env.ncpus }}
cmake --build . --target cling --parallel ${{ env.ncpus }}
# Now build gtest.a and gtest_main for CppInterOp to run its tests.
cmake --build . --target gtest_main --parallel ${{ env.ncpus }}
Expand Down

0 comments on commit b84c255

Please sign in to comment.