Skip to content

Commit

Permalink
Fix cache ci (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcbarton authored Feb 5, 2024
1 parent c5fea06 commit 6f66cc3
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ jobs:
cling: On
cling-version: '1.0'
cppyy: On
#Commented out until Ubuntu on arm Github runner becomes available
#os key to be replaced once known
#Commented out until Ubuntu on arm Github runner becomes
#available os key to be replaced once known
#- name: ubu22-arm-gcc12-clang-repl-17
# os: ubuntu-22.04-arm
# compiler: gcc-12
Expand Down Expand Up @@ -468,7 +468,8 @@ jobs:
fi
cd ../../
mkdir ./cppyy-backend/llvm-project/
cp -r ./llvm-project/ ./cppyy-backend/llvm-project/
#FIXME: Avoid copy command by caching based on absolute path
cp -r -v ./llvm-project/* ./cppyy-backend/llvm-project/
echo "Copy llvm-project folder to cppyy-backend for caching"
- name: Build LLVM/Cling on Windows systems if the cache is invalid
Expand Down Expand Up @@ -544,7 +545,7 @@ jobs:
}
cd ../../
mkdir .\cppyy-backend\llvm-project\
cp -r .\llvm-project\ .\cppyy-backend\llvm-project\
cp -r -v .\llvm-project\ .\cppyy-backend\
echo "Copy llvm-project folder to cppyy-backend for caching"
- name: Save Cache LLVM/Clang runtime build directory
Expand Down

0 comments on commit 6f66cc3

Please sign in to comment.