Skip to content

Commit

Permalink
ci: create cache folders manually?
Browse files Browse the repository at this point in the history
  • Loading branch information
I-Al-Istannen committed May 10, 2024
1 parent bd475eb commit 0ebffb1
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/enzyme-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,15 @@ jobs:
submodules: true # check out all submodules so the cache can work correctly
fetch-depth: 2
- uses: dtolnay/rust-toolchain@nightly
- name: Create cache folders
run: |
mkdir -p build/build/x86_64-unknown-linux-gnu/llvm
mkdir -p build/build/x86_64-unknown-linux-gnu/enzyme
mkdir -p build/build/bootstrap/
mkdir -p build/build/x86_64-unknown-linux-gnu/stage0-rustc/
mkdir -p build/build/x86_64-unknown-linux-gnu/stage0-std/
mkdir -p build/build/x86_64-unknown-linux-gnu/stage0-tools/
mkdir -p build/build/x86_64-unknown-linux-gnu/stage1-std/
- name: Get LLVM commit hash
id: llvm-commit
run: echo "HEAD=$(git rev-parse HEAD:src/llvm-project)" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 0ebffb1

Please sign in to comment.