Skip to content

Commit

Permalink
CI: fix fetching deps into SST_DEPS_USER_DIR structure
Browse files Browse the repository at this point in the history
  • Loading branch information
berquist committed Aug 20, 2024
1 parent f7c7c46 commit cc5cd09
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,10 @@ jobs:
key: ${{ matrix.os }}-${{ matrix.build-type }}
- name: fetch elements dependencies
run: |
mkdir -p "${SST_DEPS_USER_DIR}"/sstDeps/src/pristine
cd "${HOME}"/sstDeps/src/pristine
wget https://github.com/umd-memsys/DRAMSim2/archive/refs/tags/v2.2.2.tar.gz
pristine="${SST_DEPS_USER_DIR}"/sstDeps/src/pristine
mkdir -p "${pristine}"
cd "${pristine}"
wget https://github.com/umd-memsys/DRAMSim2/archive/refs/tags/v2.2.2.tar.gz
- run: |
export SST_DEPS_USER_MODE=1
export SST_DEPS_USER_DIR=$GITHUB_WORKSPACE
Expand Down

0 comments on commit cc5cd09

Please sign in to comment.