Skip to content

Commit

Permalink
comment, gha cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-williams committed Oct 23, 2023
1 parent c683af5 commit 8d65624
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,8 @@ jobs:
steps:
- uses: actions/checkout@v2
- run: |
export REPO=$PWD/rc
dir=$REPO/git
# Putting a directory with basename `rm` on `$PATH` breaks `openssl-sys` build inside `cargo install parquet2json` below
dir=$PWD/a/b/c
mkdir -p $dir/rm
echo "Adding git helpers repo $dir to PATH"
export PATH="$dir:$PATH"
echo "PATH: $PATH"
cargo install parquet2json
cargo install parquet2json
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ RUN apt-get update \
&& curl https://sh.rustup.rs -sSf | bash -s -- -y

WORKDIR /root
# Putting a directory with basename `rm` on `$PATH` breaks `openssl-sys` build inside `cargo install parquet2json` below
RUN mkdir -p a/b/c/rm
ENV PATH="/root/a/b/c:${PATH}"
RUN echo $PATH
Expand Down

0 comments on commit 8d65624

Please sign in to comment.