Skip to content

Commit

Permalink
ci(win): tmpdir path
Browse files Browse the repository at this point in the history
  • Loading branch information
YOU54F committed Jun 29, 2024
1 parent 7a378c0 commit 53a69a9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ env:
REACT_APP_API_BASE_URL: http://localhost:8080
APP_SHA: ${{ github.sha }}
APP_REF: ${{ github.ref }}
LD_LIBRARY_PATH: /tmp
PACT_GO_LIB_DOWNLOAD_PATH: /tmp
# LD_LIBRARY_PATH: /tmp
# PACT_GO_LIB_DOWNLOAD_PATH: /tmp
LOG_LEVEL: DEBUG
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down Expand Up @@ -148,6 +148,8 @@ jobs:
- name: Add pact_ffi lib location to path
run: |
"$env:TMP" >> $env:GITHUB_PATH
- name: Install
run: make install
- name: Test (unit)
run: make test
- name: Test (pact)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ cli:

install: bin
echo "--- 🐿 Installing Pact FFI dependencies"
./build/pact-go -l DEBUG install --libDir /tmp
./build/pact-go -l DEBUG install --libDir $$TMP

pact: clean install docker
@echo "--- 🔨 Running Pact examples"
Expand Down

0 comments on commit 53a69a9

Please sign in to comment.