Skip to content

Commit

Permalink
#282 test database - 7
Browse files Browse the repository at this point in the history
  • Loading branch information
docktermj committed Feb 28, 2025
1 parent d2c52f3 commit aaa13b3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/go-test-linux-mssql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push]

env:
SENZING_LOG_LEVEL: TRACE
SENZING_TOOLS_DATABASE_URL: "mssql://sa:Passw0rd@localhost:1433/G2"
SENZING_TOOLS_DATABASE_URL: "mssql://sa:Passw0rd@mssql:1433/G2"

permissions:
contents: read
Expand Down Expand Up @@ -71,10 +71,11 @@ jobs:

- name: Install dependencies 1
run: |
grep VERSION_ID /etc/os-release | cut -d '"' -f 2 | cut -d '.' -f 1
UBUNTU_MAJOR_VERSION=$(grep VERSION_ID /etc/os-release | cut -d '"' -f 2 | cut -d '.' -f 1)
export UBUNTU_MAJOR_VERSION
env
curl -sSL -O "https://packages.microsoft.com/config/debian/${UBUNTU_MAJOR_VERSION}/packages-microsoft-prod.deb"
curl -sSL -O "https://packages.microsoft.com/config/debian/24/packages-microsoft-prod.deb"
sudo dpkg -i packages-microsoft-prod.deb
- name: Install dependencies 2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-test-linux-mysql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push]

env:
SENZING_LOG_LEVEL: TRACE
SENZING_TOOLS_DATABASE_URL: "mysql://mysql:mysql@localhost:3306/G2"
SENZING_TOOLS_DATABASE_URL: "mysql://mysql:mysql@mysql:3306/G2"

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-test-linux-oracle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push]

env:
SENZING_LOG_LEVEL: TRACE
SENZING_TOOLS_DATABASE_URL: "oci://sys:Passw0rd@localhost:1521/G2"
SENZING_TOOLS_DATABASE_URL: "oci://sys:Passw0rd@oracle:1521/G2"

permissions:
contents: read
Expand Down

0 comments on commit aaa13b3

Please sign in to comment.