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

Updating ci/cd tools #1245

Merged
merged 2 commits into from
Jul 17, 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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
build:

runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
Expand All @@ -25,10 +25,10 @@ jobs:
- name: Set up a Vertica server
timeout-minutes: 15
run: |
docker pull vertica/vertica-ce:latest
docker pull opentext/vertica-ce:latest
docker run -d -v /tmp:/tmp -p 5433:5433 -p 5444:5444 \
--name vertica_docker \
vertica/vertica-ce
opentext/vertica-ce
echo "Vertica startup ..."
until docker exec vertica_docker test -f /data/vertica/VMart/agent_start.out; do \
echo "..."; \
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/master-codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
codecov:
name: Codecov Workflow
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
Expand All @@ -23,10 +23,10 @@ jobs:
- name: Set up a Vertica server
timeout-minutes: 15
run: |
docker pull vertica/vertica-ce:latest
docker pull opentext/vertica-ce:latest
docker run -d -v /tmp:/tmp -p 5433:5433 -p 5444:5444 \
--name vertica_docker \
vertica/vertica-ce
opentext/vertica-ce
echo "Vertica startup ..."
until docker exec vertica_docker test -f /data/vertica/VMart/agent_start.out; do \
echo "..."; \
Expand Down
Loading