Skip to content

Commit

Permalink
Autogenerated support for oracular x86_64 and aarch64 (#1826)
Browse files Browse the repository at this point in the history
  • Loading branch information
XuechunHou authored Nov 12, 2024
1 parent c175ea6 commit 789f371
Show file tree
Hide file tree
Showing 11 changed files with 116 additions and 0 deletions.
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

0 comments on commit 789f371

Please sign in to comment.