Skip to content

Commit

Permalink
fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
goastler committed Aug 16, 2024
1 parent 7fdda92 commit 634d068
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci-image-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ jobs:
- run: |
echo path: $PATH
which rustc
which cargo
- run: git --version
- run: npm --version
- run: node --version
Expand Down
5 changes: 2 additions & 3 deletions docker/images/ci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,8 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

# Add cargo to the PATH
ENV PATH=$PATH:$CARGO_HOME/bin:$RUSTUP_HOME \
# Add node to the PATH
PATH="$NVM_DIR/versions/node/v${NODE_VERSION}/bin:$PATH"
# Add node to the PATH
ENV PATH="$CARGO_HOME/bin:$RUSTUP_HOME:$NVM_DIR/versions/node/v${NODE_VERSION}/bin:$PATH"

# Set the entrypoint
ENTRYPOINT ["bash", "-e"]

0 comments on commit 634d068

Please sign in to comment.