Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

senzing-factory/github-action-install-senzing-api#80 update SDK insta… #114

Merged
merged 3 commits into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ this action runs [pytest] on the Darwin/macOS platform to perform unit tests and
- Uses:
- [actions/checkout]
- [actions/setup-python]
- [senzing-factory/github-action-install-senzing-api]
- [senzing-factory/github-action-install-senzing-sdk]
- [pytest]
- [actions/upload-artifact]

Expand All @@ -149,7 +149,7 @@ this action runs [pytest] on the Linux platform to perform unit tests and code c
- Uses:
- [actions/checkout]
- [actions/setup-python]
- [senzing-factory/github-action-install-senzing-api]
- [senzing-factory/github-action-install-senzing-sdk]
- [pytest]
- [actions/upload-artifact]

Expand All @@ -162,7 +162,7 @@ this action runs [pytest] on the Windows platform to perform unit tests and code
- Uses:
- [actions/checkout]
- [actions/setup-python]
- [senzing-factory/github-action-install-senzing-api]
- [senzing-factory/github-action-install-senzing-sdk]
- [pytest]
- [actions/upload-artifact]

Expand Down Expand Up @@ -213,5 +213,5 @@ this action runs [pytest] on the Windows platform to perform unit tests and code
[senzing-factory/build-resources/.../lint-workflows.yaml]: https://github.com/senzing-factory/build-resources/blob/main/.github/workflows/lint-workflows.yaml
[senzing-factory/build-resources/.../move-pr-to-done-dependabot.yaml]: https://github.com/senzing-factory/build-resources/blob/main/.github/workflows/move-pr-to-done-dependabot.yaml
[senzing-factory/github-action-docker-buildx-build]: https://github.com/senzing-factory/github-action-docker-buildx-build
[senzing-factory/github-action-install-senzing-api]: https://github.com/senzing-factory/github-action-install-senzing-api
[senzing-factory/github-action-install-senzing-sdk]: https://github.com/senzing-factory/github-action-install-senzing-sdk
[super-linter]: https://github.com/super-linter/super-linter
10 changes: 5 additions & 5 deletions .github/workflows/pytest-darwin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ permissions:

jobs:
pytest-darwin:
name: "pytest Senzing: ${{ matrix.senzingapi-version }}; OS: ${{ matrix.os }}; Python ${{ matrix.python-version }}"
name: "pytest Senzing: ${{ matrix.senzingsdk-version }}; OS: ${{ matrix.os }}; Python ${{ matrix.python-version }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest]
# 3.9 is unsupported on the darwin runner
python-version: ["3.10", "3.11", "3.12"]
senzingapi-version: [staging-v4]
senzingsdk-version: [staging-v4]

steps:
- name: Checkout repository
Expand All @@ -47,10 +47,10 @@ jobs:
source ./venv/bin/activate
python -m pip install typing_extensions

- name: Install Senzing API
uses: senzing-factory/github-action-install-senzing-api@v4
- name: Install Senzing SDK
uses: senzing-factory/github-action-install-senzing-sdk@v1
with:
senzingapi-version: ${{ matrix.senzingapi-version }}
senzingsdk-version: ${{ matrix.senzingsdk-version }}

- name: Copy /etc files
run: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pytest-linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ permissions:

jobs:
pytest-linux:
name: "pytest Senzing: ${{ matrix.senzingapi-version }}; OS: ${{ matrix.os }}; Python ${{ matrix.python-version }}"
name: "pytest Senzing: ${{ matrix.senzingsdk-version }}; OS: ${{ matrix.os }}; Python ${{ matrix.python-version }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
senzingapi-version: [staging-v4]
senzingsdk-version: [staging-v4]

steps:
- name: Checkout repository
Expand All @@ -45,10 +45,10 @@ jobs:
source ./venv/bin/activate
python -m pip install typing_extensions

- name: Install Senzing API
uses: senzing-factory/github-action-install-senzing-api@v4
- name: Install Senzing SDK
uses: senzing-factory/github-action-install-senzing-sdk@v1
with:
senzingapi-version: ${{ matrix.senzingapi-version }}
senzingsdk-version: ${{ matrix.senzingsdk-version }}

- name: Copy /etc files
run: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pytest-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ permissions:

jobs:
pytest-windows:
name: "pytest Senzing: ${{ matrix.senzingapi-version }}; OS: ${{ matrix.os }}; Python ${{ matrix.python-version }}"
name: "pytest Senzing: ${{ matrix.senzingsdk-version }}; OS: ${{ matrix.os }}; Python ${{ matrix.python-version }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
senzingapi-version: [staging-v4]
senzingsdk-version: [staging-v4]

steps:
- name: Checkout repository
Expand All @@ -44,10 +44,10 @@ jobs:
.\\venv\\Scripts\\activate
python -m pip install typing_extensions

- name: Install Senzing API
uses: senzing-factory/github-action-install-senzing-api@v4
- name: Install Senzing SDK
uses: senzing-factory/github-action-install-senzing-sdk@v1
with:
senzingapi-version: ${{ matrix.senzingapi-version }}
senzingsdk-version: ${{ matrix.senzingsdk-version }}

- name: Add to "Path" environment variable
run: |
Expand Down
Binary file modified testdata/sqlite/G2C-with-config.db
Binary file not shown.
Binary file modified testdata/sqlite/G2C-with-schema.db
Binary file not shown.
Binary file modified testdata/sqlite/G2C.db
Binary file not shown.
Loading