Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
gaul committed Aug 4, 2023
1 parent e4927ff commit b0c9a16
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ jobs:
run: |
S3FS_BREW_PACKAGES='automake cppcheck python3 coreutils gnu-sed openjdk@17 shellcheck';
for s3fs_brew_pkg in ${S3FS_BREW_PACKAGES}; do if brew list | grep -q ${s3fs_brew_pkg}; then if brew outdated | grep -q ${s3fs_brew_pkg}; then HOMEBREW_NO_AUTO_UPDATE=1 brew upgrade ${s3fs_brew_pkg}; fi; else HOMEBREW_NO_AUTO_UPDATE=1 brew install ${s3fs_brew_pkg}; fi; done;
sudo ln -sfn /usr/local/opt/openjdk@17/libexec/openjdk.jdk /Library/Java/JavaVirtualMachines/openjdk-17.jdk
java -version # shows version 17 as expected
- name: Install awscli2
run: |
Expand Down
1 change: 1 addition & 0 deletions test/integration-test-common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ function start_s3proxy {
S3PROXY_CACERT_FILE=""
fi

java -version
"${STDBUF_BIN}" -oL -eL java -Dfile.encoding=UTF8 -jar "${S3PROXY_BINARY}" --properties "${S3PROXY_CONFIG}" &
S3PROXY_PID=$!

Expand Down

0 comments on commit b0c9a16

Please sign in to comment.