From 3f3b8d7200a8ee630ce8f0a1ad871b59e654b109 Mon Sep 17 00:00:00 2001 From: docktermj Date: Mon, 19 Aug 2024 16:23:57 -0400 Subject: [PATCH 1/3] #158 rename .disabled files --- .../{go-test-darwin.yaml.disabled => go-test-darwin.yaml} | 0 .../{go-test-windows.yaml.disabled => go-test-windows.yaml} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{go-test-darwin.yaml.disabled => go-test-darwin.yaml} (100%) rename .github/workflows/{go-test-windows.yaml.disabled => go-test-windows.yaml} (100%) diff --git a/.github/workflows/go-test-darwin.yaml.disabled b/.github/workflows/go-test-darwin.yaml similarity index 100% rename from .github/workflows/go-test-darwin.yaml.disabled rename to .github/workflows/go-test-darwin.yaml diff --git a/.github/workflows/go-test-windows.yaml.disabled b/.github/workflows/go-test-windows.yaml similarity index 100% rename from .github/workflows/go-test-windows.yaml.disabled rename to .github/workflows/go-test-windows.yaml From 7af6977e695c0987ec70034aa6c5a3d1f390de52 Mon Sep 17 00:00:00 2001 From: docktermj Date: Mon, 19 Aug 2024 16:50:28 -0400 Subject: [PATCH 2/3] #158 savepoint --- .github/workflows/go-test-windows.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go-test-windows.yaml b/.github/workflows/go-test-windows.yaml index 8314526..ff459e0 100644 --- a/.github/workflows/go-test-windows.yaml +++ b/.github/workflows/go-test-windows.yaml @@ -41,10 +41,10 @@ jobs: senzingapi-version: ${{ matrix.senzingapi-version }} - name: Add to "Path" environment variable - run: echo "C:\Program Files\Senzing\g2\lib" | Out-File -FilePath "$env:GITHUB_PATH" -Encoding utf8 -Append + run: echo "C:\Program Files\Senzing\er\lib" | Out-File -FilePath "$env:GITHUB_PATH" -Encoding utf8 -Append - name: Copy /etc files - run: copy testdata/senzing-license/g2.lic "C:\Program Files\Senzing\g2\etc\g2.lic" + run: copy testdata/senzing-license/g2.lic "C:\Program Files\Senzing\er\etc\g2.lic" - name: Copy test database files run: mkdir "C:\Temp\sqlite" && copy testdata/sqlite/G2C.db "C:\Temp\sqlite\G2C.db" From 112bbe6a964e2041e06ef361b2f7b6c5ca425cc0 Mon Sep 17 00:00:00 2001 From: docktermj Date: Tue, 20 Aug 2024 16:20:23 -0400 Subject: [PATCH 3/3] #158 Fix lint error --- .github/workflows/go-test-windows.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go-test-windows.yaml b/.github/workflows/go-test-windows.yaml index ff459e0..551ff40 100644 --- a/.github/workflows/go-test-windows.yaml +++ b/.github/workflows/go-test-windows.yaml @@ -41,7 +41,7 @@ jobs: senzingapi-version: ${{ matrix.senzingapi-version }} - name: Add to "Path" environment variable - run: echo "C:\Program Files\Senzing\er\lib" | Out-File -FilePath "$env:GITHUB_PATH" -Encoding utf8 -Append + run: printf "C:\Program Files\Senzing\er\lib" | Out-File -FilePath "$env:GITHUB_PATH" -Encoding utf8 -Append - name: Copy /etc files run: copy testdata/senzing-license/g2.lic "C:\Program Files\Senzing\er\etc\g2.lic"