Skip to content
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
10 changes: 10 additions & 0 deletions kokoro/config/build/presubmit/oracular_aarch64.gcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import '../common.gcl' as common

config build = common.build {
params {
environment {
DISTRO = 'oracular'
PKGFORMAT = 'deb'
}
}
}
10 changes: 10 additions & 0 deletions kokoro/config/build/presubmit/oracular_x86_64.gcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import '../common.gcl' as common

config build = common.build {
params {
environment {
DISTRO = 'oracular'
PKGFORMAT = 'deb'
}
}
}
10 changes: 10 additions & 0 deletions kokoro/config/test/ops_agent/presubmit/oracular_aarch64.gcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import 'common.gcl' as common

config build = common.ops_agent_test {
params {
environment {
TARGET = 'oracular'
ARCH = 'aarch64'
}
}
}
10 changes: 10 additions & 0 deletions kokoro/config/test/ops_agent/presubmit/oracular_x86_64.gcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import 'common.gcl' as common

config build = common.ops_agent_test {
params {
environment {
TARGET = 'oracular'
ARCH = 'x86_64'
}
}
}
10 changes: 10 additions & 0 deletions kokoro/config/test/ops_agent/release/oracular_aarch64.gcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import 'common.gcl' as common

config build = common.ops_agent_test {
params {
environment {
TARGET = 'oracular'
ARCH = 'aarch64'
}
}
}
10 changes: 10 additions & 0 deletions kokoro/config/test/ops_agent/release/oracular_x86_64.gcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import 'common.gcl' as common

config build = common.ops_agent_test {
params {
environment {
TARGET = 'oracular'
ARCH = 'x86_64'
}
}
}
10 changes: 10 additions & 0 deletions kokoro/config/test/third_party_apps/presubmit/oracular_aarch64.gcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import 'common.gcl' as common

config build = common.third_party_apps_test {
params {
environment {
TARGET = 'oracular'
ARCH = 'aarch64'
}
}
}
10 changes: 10 additions & 0 deletions kokoro/config/test/third_party_apps/presubmit/oracular_x86_64.gcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import 'common.gcl' as common

config build = common.third_party_apps_test {
params {
environment {
TARGET = 'oracular'
ARCH = 'x86_64'
}
}
}
10 changes: 10 additions & 0 deletions kokoro/config/test/third_party_apps/release/oracular_aarch64.gcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import 'common.gcl' as common

config build = common.third_party_apps_test {
params {
environment {
TARGET = 'oracular'
ARCH = 'aarch64'
}
}
}
10 changes: 10 additions & 0 deletions kokoro/config/test/third_party_apps/release/oracular_x86_64.gcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import 'common.gcl' as common

config build = common.third_party_apps_test {
params {
environment {
TARGET = 'oracular'
ARCH = 'x86_64'
}
}
}
16 changes: 16 additions & 0 deletions project.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
targets:
oracular:
package_extension:
deb
architectures:
x86_64:
test_distros:
representative:
- ubuntu-os-cloud:ubuntu-2410-amd64
exhaustive:
- ubuntu-os-cloud:ubuntu-minimal-2410-amd64
aarch64:
test_distros:
representative:
- ubuntu-os-cloud:ubuntu-2410-arm64
exhaustive:
- ubuntu-os-cloud:ubuntu-minimal-2410-arm64
bookworm:
package_extension:
deb
Expand Down
Loading