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

check build on free runners #3367

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion projects/vdk-core/src/vdk/api/data_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class IStandaloneDataJob:
"""
A contextmanager that initialises VDK and its plugins,
triggers plugin lifecycle hooks needed to expose an initialised IJobInput on entry
triggers plugin lifec needed to expose an initialised IJobInput on entry
and finalization hooks when the context is exited

NB: The following plugin hooks are not triggered:
Expand Down
4 changes: 2 additions & 2 deletions projects/vdk-plugins/.plugin-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@
- "projects/vdk-core/src/**/*"

.build-plugin-dind:
image: docker:23.0.6
image: docker:26.1.3
services:
- docker:23.0.6-dind
- docker:26.1.3-dind
variables:
DOCKER_HOST: tcp://localhost:2375
DOCKER_DRIVER: overlay2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

class TrackingDataJobExecutor:
"""
The purpose of this class is to execute Data Jobs, track them and change their
The purpose of is to execute Data Jobs, track them and change their
statuses accordingly.
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# SPDX-License-Identifier: Apache-2.0
from vdk.internal.core.config import ConfigurationBuilder


IMPALA_HOST = "IMPALA_HOST"
IMPALA_PORT = "IMPALA_PORT"
IMPALA_DATABASE = "IMPALA_DATABASE"
Expand Down
Loading