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

youcat:0.5.3 #154

Merged
merged 2 commits into from
Nov 24, 2023
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
17 changes: 9 additions & 8 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ jobs:
with:
java-version: 1.8

- name: build and test cadc-jsqlparser-compat
run: cd cadc-jsqlparser-compat && ../gradlew --info clean build javadoc install

- name: build and test cadc-tap
run: cd cadc-tap && ../gradlew --info clean build javadoc install

Expand All @@ -25,18 +28,16 @@ jobs:
- name: build and test cadc-tap-server
run: cd cadc-tap-server && ../gradlew --info clean build javadoc install

- name: build and test cadc-tap-server-pg
- name: build and test cadc-adql
run: cd cadc-adql && ../gradlew --info clean build javadoc install

- name: build and test cadc-tap-server-pg
run: cd cadc-tap-server-pg && ../gradlew --info clean build javadoc install

- name: build and test cadc-tap-server-oracle
run: cd cadc-adql && ../gradlew --info clean build javadoc install

- name: build and test cadc-jsqlparser-compat
run: cd cadc-jsqlparser-compat && ../gradlew --info clean build javadoc install

- name: build and test cadc-adql
run: cd cadc-adql && ../gradlew --info clean build javadoc install



- name: build and test cadc-test-tap
run: cd cadc-test-tap && ../gradlew --info clean build javadoc install

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,11 @@ protected void init() {

static class TestIdentityManager implements IdentityManager {

@Override
public Set<URI> getSecurityMethods() {
throw new UnsupportedOperationException();
}

@Override
public Subject validate(Subject subject) throws NotAuthenticatedException {
throw new UnsupportedOperationException();
Expand Down
2 changes: 1 addition & 1 deletion youcat/VERSION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## deployable containers have a semantic and build tag
# semantic version tag: major.minor
# build version tag: timestamp
VER=0.5.2
VER=0.5.3
TAGS="${VER} ${VER}-$(date --utc +"%Y%m%dT%H%M%S")"
unset VER
Loading