Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions .github/workflows/MacOS-arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
echo "CLING_HASH=$CLING_HASH" >> $GITHUB_ENV
echo "LLVM_HASH=$LLVM_HASH" >> $GITHUB_ENV

- name: Restore Cache LLVM/Clang runtime build directory
- name: Restore cached LLVM-${{ matrix.clang-runtime }} and ${{ matrix.cling == 'On' && 'Cling' || 'Clang-REPL' }} build
uses: actions/cache/restore@v4
id: cache
with:
Expand Down Expand Up @@ -164,12 +164,12 @@ jobs:
brew install gnu-sed
pip install distro pytest


- uses: ./.github/actions/Build_LLVM
- name: Build LLVM-${{ matrix.clang-runtime }} and ${{ matrix.cling == 'On' && 'Cling' || 'Clang-REPL' }}
uses: ./.github/actions/Build_LLVM
with:
cache-hit: ${{ steps.cache.outputs.cache-hit }}

- name: Save Cache LLVM/Clang runtime build directory
- name: Cache LLVM-${{ matrix.clang-runtime }} and ${{ matrix.cling == 'On' && 'Cling' || 'Clang-REPL' }} build
uses: actions/cache/save@v4
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
with:
Expand All @@ -178,9 +178,11 @@ jobs:
${{ matrix.cling=='On' && 'cling' || '' }}
key: ${{ steps.cache.outputs.cache-primary-key }}

- uses: ./.github/actions/Build_and_Test_CppInterOp
- name: Build and test CppInterOp
uses: ./.github/actions/Build_and_Test_CppInterOp

- uses: ./.github/actions/Build_and_Test_cppyy
- name: Build and test cppyy
uses: ./.github/actions/Build_and_Test_cppyy

- name: Show debug info
if: ${{ failure() }}
Expand Down
14 changes: 8 additions & 6 deletions .github/workflows/MacOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
echo "CLING_HASH=$CLING_HASH" >> $GITHUB_ENV
echo "LLVM_HASH=$LLVM_HASH" >> $GITHUB_ENV

- name: Restore Cache LLVM/Clang runtime build directory
- name: Restore cached LLVM-${{ matrix.clang-runtime }} and ${{ matrix.cling == 'On' && 'Cling' || 'Clang-REPL' }} build
uses: actions/cache/restore@v4
id: cache
with:
Expand Down Expand Up @@ -149,12 +149,12 @@ jobs:
brew install gnu-sed
pip install distro pytest


- uses: ./.github/actions/Build_LLVM
- name: Build LLVM-${{ matrix.clang-runtime }} and ${{ matrix.cling == 'On' && 'Cling' || 'Clang-REPL' }}
uses: ./.github/actions/Build_LLVM
with:
cache-hit: ${{ steps.cache.outputs.cache-hit }}

- name: Save Cache LLVM/Clang runtime build directory
- name: Cache LLVM-${{ matrix.clang-runtime }} and ${{ matrix.cling == 'On' && 'Cling' || 'Clang-REPL' }} build
uses: actions/cache/save@v4
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
with:
Expand All @@ -163,9 +163,11 @@ jobs:
${{ matrix.cling=='On' && 'cling' || '' }}
key: ${{ steps.cache.outputs.cache-primary-key }}

- uses: ./.github/actions/Build_and_Test_CppInterOp
- name: Build and test CppInterOp
uses: ./.github/actions/Build_and_Test_CppInterOp

- uses: ./.github/actions/Build_and_Test_cppyy
- name: Build and test cppyy
uses: ./.github/actions/Build_and_Test_cppyy

- name: Show debug info
if: ${{ failure() }}
Expand Down
14 changes: 9 additions & 5 deletions .github/workflows/Ubuntu-arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
echo "CLING_HASH=$CLING_HASH" >> $GITHUB_ENV
echo "LLVM_HASH=$LLVM_HASH" >> $GITHUB_ENV

- name: Restore Cache LLVM/Clang runtime build directory
- name: Restore cached LLVM-${{ matrix.clang-runtime }} and ${{ matrix.cling == 'On' && 'Cling' || 'Clang-REPL' }} build
uses: actions/cache/restore@v4
id: cache
with:
Expand Down Expand Up @@ -163,11 +163,13 @@ jobs:
sudo apt install libeigen3-dev
sudo apt install libboost-all-dev

- uses: ./.github/actions/Build_LLVM

- name: Build LLVM-${{ matrix.clang-runtime }} and ${{ matrix.cling == 'On' && 'Cling' || 'Clang-REPL' }}
uses: ./.github/actions/Build_LLVM
with:
cache-hit: ${{ steps.cache.outputs.cache-hit }}

- name: Save Cache LLVM/Clang runtime build directory
- name: Cache LLVM-${{ matrix.clang-runtime }} and ${{ matrix.cling == 'On' && 'Cling' || 'Clang-REPL' }} build
uses: actions/cache/save@v4
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
with:
Expand All @@ -183,7 +185,8 @@ jobs:
echo "CODE_COVERAGE=1" >> $GITHUB_ENV
echo "BUILD_TYPE=Debug" >> $GITHUB_ENV

- uses: ./.github/actions/Build_and_Test_CppInterOp
- name: Build and test CppInterOp
uses: ./.github/actions/Build_and_Test_CppInterOp

- name: Prepare code coverage report
if: ${{ success() && (matrix.coverage == true) }}
Expand All @@ -205,7 +208,8 @@ jobs:
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}

- uses: ./.github/actions/Build_and_Test_cppyy
- name: Build and test cppyy
uses: ./.github/actions/Build_and_Test_cppyy

- name: Show debug info
if: ${{ failure() }}
Expand Down
14 changes: 9 additions & 5 deletions .github/workflows/Ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
echo "CLING_HASH=$CLING_HASH" >> $GITHUB_ENV
echo "LLVM_HASH=$LLVM_HASH" >> $GITHUB_ENV

- name: Restore Cache LLVM/Clang runtime build directory
- name: Restore cached LLVM-${{ matrix.clang-runtime }} and ${{ matrix.cling == 'On' && 'Cling' || 'Clang-REPL' }} build
uses: actions/cache/restore@v4
id: cache
with:
Expand Down Expand Up @@ -152,11 +152,13 @@ jobs:
# Install libraries used by the cppyy test suite
sudo apt install libeigen3-dev
sudo apt install libboost-all-dev
- uses: ./.github/actions/Build_LLVM

- name: Build LLVM-${{ matrix.clang-runtime }} and ${{ matrix.cling == 'On' && 'Cling' || 'Clang-REPL' }}
uses: ./.github/actions/Build_LLVM
with:
cache-hit: ${{ steps.cache.outputs.cache-hit }}

- name: Save Cache LLVM/Clang runtime build directory
- name: Cache LLVM-${{ matrix.clang-runtime }} and ${{ matrix.cling == 'On' && 'Cling' || 'Clang-REPL' }} build
uses: actions/cache/save@v4
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
with:
Expand All @@ -172,7 +174,8 @@ jobs:
echo "CODE_COVERAGE=1" >> $GITHUB_ENV
echo "BUILD_TYPE=Debug" >> $GITHUB_ENV

- uses: ./.github/actions/Build_and_Test_CppInterOp
- name: Build and test CppInterOp
uses: ./.github/actions/Build_and_Test_CppInterOp

- name: Prepare code coverage report
if: ${{ success() && (matrix.coverage == true) }}
Expand All @@ -194,7 +197,8 @@ jobs:
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}

- uses: ./.github/actions/Build_and_Test_cppyy
- name: Build and test cppyy
uses: ./.github/actions/Build_and_Test_cppyy

- name: Show debug info
if: ${{ failure() }}
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/Windows-arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
echo "CLING_HASH=$env:CLING_HASH" >> $GITHUB_ENV
echo "LLVM_HASH=$env:LLVM_HASH" >> $GITHUB_ENV

- name: Restore Cache LLVM/Clang runtime build directory
- name: Restore cached LLVM-${{ matrix.clang-runtime }} and ${{ matrix.cling == 'On' && 'Cling' || 'Clang-REPL' }} build
uses: actions/cache/restore@v4
id: cache
with:
Expand Down Expand Up @@ -117,11 +117,12 @@ jobs:
choco install findutils
$env:PATH="C:\Program Files (x86)\GnuWin32\bin;$env:PATH"

- uses: ./.github/actions/Build_LLVM
- name: Build LLVM-${{ matrix.clang-runtime }} and ${{ matrix.cling == 'On' && 'Cling' || 'Clang-REPL' }}
uses: ./.github/actions/Build_LLVM
with:
cache-hit: ${{ steps.cache.outputs.cache-hit }}

- name: Save Cache LLVM/Clang runtime build directory
- name: Cache LLVM-${{ matrix.clang-runtime }} and ${{ matrix.cling == 'On' && 'Cling' || 'Clang-REPL' }} build
uses: actions/cache/save@v4
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
with:
Expand All @@ -130,7 +131,8 @@ jobs:
${{ matrix.cling=='On' && 'cling' || '' }}
key: ${{ steps.cache.outputs.cache-primary-key }}

- uses: ./.github/actions/Build_and_Test_CppInterOp
- name: Build and test CppInterOp
uses: ./.github/actions/Build_and_Test_CppInterOp

- name: Setup tmate session
if: ${{ failure() && runner.debug }}
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/Windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
echo "CLING_HASH=$env:CLING_HASH" >> $GITHUB_ENV
echo "LLVM_HASH=$env:LLVM_HASH" >> $GITHUB_ENV

- name: Restore Cache LLVM/Clang runtime build directory
- name: Restore cached LLVM-${{ matrix.clang-runtime }} and ${{ matrix.cling == 'On' && 'Cling' || 'Clang-REPL' }} build
uses: actions/cache/restore@v4
id: cache
with:
Expand Down Expand Up @@ -117,11 +117,12 @@ jobs:
choco install findutils
$env:PATH="C:\Program Files (x86)\GnuWin32\bin;$env:PATH"

- uses: ./.github/actions/Build_LLVM
- name: Build LLVM-${{ matrix.clang-runtime }} and ${{ matrix.cling == 'On' && 'Cling' || 'Clang-REPL' }}
uses: ./.github/actions/Build_LLVM
with:
cache-hit: ${{ steps.cache.outputs.cache-hit }}

- name: Save Cache LLVM/Clang runtime build directory
- name: Cache LLVM-${{ matrix.clang-runtime }} and ${{ matrix.cling == 'On' && 'Cling' || 'Clang-REPL' }} build
uses: actions/cache/save@v4
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
with:
Expand All @@ -130,7 +131,8 @@ jobs:
${{ matrix.cling=='On' && 'cling' || '' }}
key: ${{ steps.cache.outputs.cache-primary-key }}

- uses: ./.github/actions/Build_and_Test_CppInterOp
- name: Build and test CppInterOp
uses: ./.github/actions/Build_and_Test_CppInterOp

- name: Setup tmate session
if: ${{ failure() && runner.debug }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
cd emsdk
./emsdk install ${{ matrix.emsdk_ver }}

- name: Restore Cache LLVM/Clang runtime build directory
- name: Restore cached LLVM-${{ matrix.clang-runtime }} and ${{ matrix.cling == 'On' && 'Cling' || 'Clang-REPL' }} build
uses: actions/cache/restore@v4
id: cache
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/emscripten.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ jobs:
echo "CLING_HASH=$env:CLING_HASH" >> $GITHUB_ENV
echo "LLVM_HASH=$env:LLVM_HASH" >> $GITHUB_ENV

- name: Restore Cache LLVM/Clang runtime build directory (Unix like systems emscripten)
- name: Restore cached LLVM-${{ matrix.clang-runtime }} and ${{ matrix.cling == 'On' && 'Cling' || 'Clang-REPL' }} build (Unix like systems emscripten)
uses: actions/cache/restore@v4
id: cache
with:
Expand Down Expand Up @@ -415,7 +415,7 @@ jobs:
cd ..\..
}

- name: Save Cache LLVM/Clang runtime build directory
- name: Cache LLVM-${{ matrix.clang-runtime }} and ${{ matrix.cling == 'On' && 'Cling' || 'Clang-REPL' }} build
uses: actions/cache/save@v4
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
with:
Expand Down Expand Up @@ -540,7 +540,7 @@ jobs:
cd emsdk
./emsdk install ${{ matrix.emsdk_ver }}

- name: Restore Cache LLVM/Clang runtime build directory
- name: Restore cached LLVM-${{ matrix.clang-runtime }} and ${{ matrix.cling == 'On' && 'Cling' || 'Clang-REPL' }} build
uses: actions/cache/restore@v4
id: cache
with:
Expand Down
Loading