Skip to content

Commit 4a49784

Browse files
authored
Try and fix PR
1 parent 15050a8 commit 4a49784

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

.github/actions/Build_and_Test_CppInterOp/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: 'Builds and test CppInterOp'
22
description: 'This action builds and tests CppInterOp for native platforms'
33

44
runs:
5+
using: composite
56
steps:
67
- name: Build and Test/Install CppInterOp
78
if: runner.os != 'Windows'

.github/workflows/MacOS-arm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ jobs:
374374
${{ matrix.cling=='On' && 'cling' || '' }}
375375
key: ${{ env.CLING_HASH }}-${{ runner.os }}-${{ matrix.os }}-${{ matrix.compiler }}-clang-${{ matrix.clang-runtime }}.x-patch-${{ hashFiles(format('patches/llvm/clang{0}-*.patch', matrix.clang-runtime)) || 'none' }}
376376

377-
- uses: .github/actions/Build_and_Test_CppInterOp
377+
- uses: ./.github/actions/Build_and_Test_CppInterOp
378378

379379
- name: Build and Install cppyy-backend
380380
if: ${{ matrix.cppyy == 'On' }}

.github/workflows/MacOS.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ jobs:
343343
${{ matrix.cling=='On' && 'cling' || '' }}
344344
key: ${{ env.CLING_HASH }}-${{ runner.os }}-${{ matrix.os }}-${{ matrix.compiler }}-clang-${{ matrix.clang-runtime }}.x-patch-${{ hashFiles(format('patches/llvm/clang{0}-*.patch', matrix.clang-runtime)) || 'none' }}
345345

346-
- uses: .github/actions/Build_and_Test_CppInterOp
346+
- uses: ./.github/actions/Build_and_Test_CppInterOp
347347

348348
- name: Build and Install cppyy-backend
349349
if: ${{ matrix.cppyy == 'On' }}

.github/workflows/Ubuntu-arm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ jobs:
427427
echo "CODE_COVERAGE=1" >> $GITHUB_ENV
428428
echo "BUILD_TYPE=Debug" >> $GITHUB_ENV
429429
430-
- uses: .github/actions/Build_and_Test_CppInterOp
430+
- uses: ./.github/actions/Build_and_Test_CppInterOp
431431

432432
- name: Prepare code coverage report
433433
if: ${{ success() && (matrix.coverage == true) }}

.github/workflows/Ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ jobs:
435435
echo "CODE_COVERAGE=1" >> $GITHUB_ENV
436436
echo "BUILD_TYPE=Debug" >> $GITHUB_ENV
437437
438-
- uses: .github/actions/Build_and_Test_CppInterOp
438+
- uses: ./.github/actions/Build_and_Test_CppInterOp
439439

440440
- name: Prepare code coverage report
441441
if: ${{ success() && (matrix.coverage == true) }}

.github/workflows/Windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ jobs:
306306
${{ matrix.cling=='On' && 'cling' || '' }}
307307
key: ${{ env.CLING_HASH }}-${{ runner.os }}-${{ matrix.os }}-${{ matrix.compiler }}-clang-${{ matrix.clang-runtime }}.x-patch-${{ hashFiles(format('patches/llvm/clang{0}-*.patch', matrix.clang-runtime)) || 'none' }}
308308

309-
- uses: .github/actions/Build_and_Test_CppInterOp
309+
- uses: ./.github/actions/Build_and_Test_CppInterOp
310310

311311
- name: Setup tmate session
312312
if: ${{ failure() && runner.debug }}

0 commit comments

Comments
 (0)