Skip to content

Commit 6f66cc3

Browse files
authored
Fix cache ci (compiler-research#92)
1 parent c5fea06 commit 6f66cc3

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ jobs:
5959
cling: On
6060
cling-version: '1.0'
6161
cppyy: On
62-
#Commented out until Ubuntu on arm Github runner becomes available
63-
#os key to be replaced once known
62+
#Commented out until Ubuntu on arm Github runner becomes
63+
#available os key to be replaced once known
6464
#- name: ubu22-arm-gcc12-clang-repl-17
6565
# os: ubuntu-22.04-arm
6666
# compiler: gcc-12
@@ -468,7 +468,8 @@ jobs:
468468
fi
469469
cd ../../
470470
mkdir ./cppyy-backend/llvm-project/
471-
cp -r ./llvm-project/ ./cppyy-backend/llvm-project/
471+
#FIXME: Avoid copy command by caching based on absolute path
472+
cp -r -v ./llvm-project/* ./cppyy-backend/llvm-project/
472473
echo "Copy llvm-project folder to cppyy-backend for caching"
473474
474475
- name: Build LLVM/Cling on Windows systems if the cache is invalid
@@ -544,7 +545,7 @@ jobs:
544545
}
545546
cd ../../
546547
mkdir .\cppyy-backend\llvm-project\
547-
cp -r .\llvm-project\ .\cppyy-backend\llvm-project\
548+
cp -r -v .\llvm-project\ .\cppyy-backend\
548549
echo "Copy llvm-project folder to cppyy-backend for caching"
549550
550551
- name: Save Cache LLVM/Clang runtime build directory

0 commit comments

Comments
 (0)