-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add deephaven-plugin-ui (and other plugins) to base server image
- Deprecate the server-ui image, and just bake the plugins into core
- Loading branch information
Showing
6 changed files
with
27 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,19 +2,19 @@ name: Edge CI | |
|
||
on: | ||
schedule: | ||
- cron: '0 3 * * *' | ||
- cron: "0 3 * * *" | ||
pull_request: | ||
branches: [ main ] | ||
branches: [main] | ||
push: | ||
branches: [ main ] | ||
branches: [main] | ||
workflow_dispatch: | ||
|
||
# For maximum cache coherency, ensure only one outstanding build at any given time | ||
concurrency: release | ||
|
||
jobs: | ||
assemble-deephaven-core: | ||
# Forks don't need to run the scheduled cron | ||
# Forks don't need to run the scheduled cron | ||
if: ${{ github.repository_owner == 'deephaven' || github.event_name != 'schedule' }} | ||
|
||
runs-on: ubuntu-24.04 | ||
|
@@ -34,12 +34,12 @@ jobs: | |
id: setup-java-11 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '11' | ||
distribution: "temurin" | ||
java-version: "11" | ||
|
||
- name: Set JAVA_HOME | ||
run: echo "JAVA_HOME=${{ steps.setup-java-11.outputs.path }}" >> $GITHUB_ENV | ||
|
||
- name: Setup gradle properties | ||
run: | | ||
.github/scripts/gradle-properties.sh >> gradle.properties | ||
|
@@ -61,7 +61,7 @@ jobs: | |
retention-days: 2 | ||
|
||
bake-images: | ||
# Forks don't need to run the scheduled cron | ||
# Forks don't need to run the scheduled cron | ||
if: ${{ github.repository_owner == 'deephaven' || github.event_name != 'schedule' }} | ||
|
||
needs: assemble-deephaven-core | ||
|
@@ -105,7 +105,7 @@ jobs: | |
- name: Bake | ||
uses: docker/[email protected] | ||
with: | ||
targets: server,server-slim,server-base,server-slim-base,server-ui | ||
targets: server,server-slim,server-base,server-slim-base | ||
files: server.hcl,server-slim.hcl,server-base.hcl,server-slim-base.hcl | ||
pull: true | ||
env: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,9 @@ name: Release CI | |
|
||
on: | ||
pull_request: | ||
branches: [ main ] | ||
branches: [main] | ||
push: | ||
branches: [ 'main', 'release/v*' ] | ||
branches: ["main", "release/v*"] | ||
|
||
# For maximum cache coherency, ensure only one outstanding build at any given time | ||
concurrency: release | ||
|
@@ -32,7 +32,7 @@ jobs: | |
- name: Bake | ||
uses: docker/[email protected] | ||
with: | ||
targets: server,server-slim,server-all-ai,server-nltk,server-pytorch,server-sklearn,server-tensorflow,server-ui | ||
targets: server,server-slim,server-all-ai,server-nltk,server-pytorch,server-sklearn,server-tensorflow | ||
files: server.hcl,server-slim.hcl | ||
pull: true | ||
env: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
deephaven-plugin-matplotlib>=0.5.0 | ||
deephaven-plugin-plotly-express>=0.11.2 | ||
deephaven-plugin-ui>=0.21.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters