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

Cpp client base arm 64 4 16 #65

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
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
5 changes: 1 addition & 4 deletions .github/workflows/build-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,12 @@ on:
schedule:
- cron: '0 19 * * *'

# For maximum cache coherency, ensure only one outstanding build at any given time
concurrency: release

jobs:
build:
# Forks don't need to run the scheduled cron
if: ${{ github.repository_owner == 'deephaven' || github.event_name != 'schedule' }}

runs-on: ubuntu-22.04
runs-on: ubuntu-22.04-4-16
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
24 changes: 0 additions & 24 deletions docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -119,84 +119,60 @@ target "cpp-client-base" {

target "java-release" {
inherits = [ "java" ]
cache-from = [ "type=gha,scope=${CACHE_PREFIX}java" ]
cache-to = [ "type=gha,mode=max,scope=${CACHE_PREFIX}java" ]
platforms = [ "linux/amd64", "linux/arm64" ]
}

target "slim-base-release" {
inherits = [ "slim-base" ]
cache-from = [ "type=gha,scope=${CACHE_PREFIX}slim-base" ]
cache-to = [ "type=gha,mode=max,scope=${CACHE_PREFIX}slim-base" ]
platforms = [ "linux/amd64", "linux/arm64" ]
}

target "server-base-release" {
inherits = [ "server-base" ]
cache-from = [ "type=gha,scope=${CACHE_PREFIX}server-base" ]
cache-to = [ "type=gha,mode=max,scope=${CACHE_PREFIX}server-base" ]
platforms = [ "linux/amd64", "linux/arm64" ]
}

target "nltk-base-release" {
inherits = [ "nltk-base" ]
cache-from = [ "type=gha,scope=${CACHE_PREFIX}nltk-base" ]
cache-to = [ "type=gha,mode=max,scope=${CACHE_PREFIX}nltk-base" ]
platforms = [ "linux/amd64", "linux/arm64" ]
}

target "pytorch-base-release" {
inherits = [ "pytorch-base" ]
cache-from = [ "type=gha,scope=${CACHE_PREFIX}pytorch-base" ]
cache-to = [ "type=gha,mode=max,scope=${CACHE_PREFIX}pytorch-base" ]
platforms = [ "linux/amd64", "linux/arm64" ]
}

target "sklearn-base-release" {
inherits = [ "sklearn-base" ]
cache-from = [ "type=gha,scope=${CACHE_PREFIX}sklearn-base" ]
cache-to = [ "type=gha,mode=max,scope=${CACHE_PREFIX}sklearn-base" ]
platforms = [ "linux/amd64", "linux/arm64" ]
}

target "tensorflow-base-release" {
inherits = [ "tensorflow-base" ]
cache-from = [ "type=gha,scope=${CACHE_PREFIX}tensorflow-base" ]
cache-to = [ "type=gha,mode=max,scope=${CACHE_PREFIX}tensorflow-base" ]
platforms = [ "linux/amd64" ]
}

target "all-ai-base-release" {
inherits = [ "all-ai-base" ]
cache-from = [ "type=gha,scope=${CACHE_PREFIX}all-ai-base" ]
cache-to = [ "type=gha,mode=max,scope=${CACHE_PREFIX}all-ai-base" ]
platforms = [ "linux/amd64" ]
}

target "nginx-base-release" {
inherits = [ "nginx-base" ]
cache-from = [ "type=gha,scope=${CACHE_PREFIX}nginx-base" ]
cache-to = [ "type=gha,mode=max,scope=${CACHE_PREFIX}nginx-base" ]
platforms = [ "linux/amd64", "linux/arm64" ]
}

target "nginx-noroot-base-release" {
inherits = [ "nginx-noroot-base" ]
cache-from = [ "type=gha,scope=${CACHE_PREFIX}nginx-noroot-base" ]
cache-to = [ "type=gha,mode=max,scope=${CACHE_PREFIX}nginx-noroot-base" ]
platforms = [ "linux/amd64", "linux/arm64" ]
}

target "protoc-base-release" {
inherits = [ "protoc-base" ]
cache-from = [ "type=gha,scope=${CACHE_PREFIX}protoc-base" ]
cache-to = [ "type=gha,mode=max,scope=${CACHE_PREFIX}protoc-base" ]
platforms = [ "linux/amd64" ]
}

target "cpp-client-base-release" {
inherits = [ "cpp-client-base" ]
cache-from = [ "type=gha,scope=${CACHE_PREFIX}cpp-client-base" ]
cache-to = [ "type=gha,mode=max,scope=${CACHE_PREFIX}cpp-client-base" ]
platforms = [ "linux/amd64" ]
}