Skip to content

Commit 66fab12

Browse files
committed
#331 Update tests
1 parent d675271 commit 66fab12

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/go-test-darwin.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Go test darwin
33
on: [pull_request, workflow_dispatch]
44

55
env:
6+
CGO_LDFLAGS: "-Wl,-no_warn_duplicate_libraries"
67
DYLD_LIBRARY_PATH: /opt/senzing/er/lib:/opt/senzing/er/lib/macos
78
LD_LIBRARY_PATH: /opt/senzing/er/lib:/opt/senzing/er/lib/macos
89
SENZING_LOG_LEVEL: TRACE
@@ -18,7 +19,7 @@ jobs:
1819
strategy:
1920
matrix:
2021
go: ["1.21"]
21-
os: [macos-13]
22+
os: [macos-latest]
2223
senzingapi-version: [staging-v4]
2324

2425
steps:

.github/workflows/go-test-windows.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ jobs:
4141
senzingapi-version: ${{ matrix.senzingapi-version }}
4242

4343
- name: Add to "Path" environment variable
44-
run: printf "C:\Program Files\Senzing\er\lib" | Out-File -FilePath "$env:GITHUB_PATH" -Encoding utf8 -Append
44+
run: |
45+
# shellcheck disable=SC2028
46+
echo "C:\Program Files\Senzing\er\lib" >> "$env:GITHUB_PATH"
4547
4648
- name: Copy /etc files
4749
run: copy testdata/senzing-license/g2.lic "C:\Program Files\Senzing\er\etc\g2.lic"

0 commit comments

Comments
 (0)