Skip to content

parallel-versioning #28

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

Merged
merged 1 commit into from
Mar 2, 2025
Merged
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
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ on:
branches:
- main
- develop
- version*
tags:
- build*
pull_request:
branches:
- main
- develop
- version*

env:
GOGETCMD: "go get -v -t -d ./..."
Expand Down Expand Up @@ -166,8 +168,7 @@ jobs:
run: |
pgrep -f flask | xargs kill -9 || true
flask --app=./test/python/flask/gcp/app run --cert=./test/server/mtls/credentials/pg_server_cert.pem --key=./test/server/mtls/credentials/pg_server_key.pem --host 0.0.0.0 --port 1080 &
# Lack of TLS on token server should be addressed universally
flask --app=./test/python/flask/oauth2/token_srv run --host 0.0.0.0 --port 2091 &
flask --app=./test/python/flask/oauth2/token_srv run --cert=./test/server/mtls/credentials/pg_server_cert.pem --key=./test/server/mtls/credentials/pg_server_key.pem --host 0.0.0.0 --port 2091 &

- name: Run core mocked testing
working-directory: stackql-core
Expand Down
Loading