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
2 changes: 2 additions & 0 deletions .github/workflows/package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,8 @@ jobs:
- ubuntu-jammy-arm64
- ubuntu-noble-amd64
- ubuntu-noble-arm64
- ubuntu-resolute-amd64
- ubuntu-resolute-arm64
env:
APACHE_ARROW_REPOSITORY: ${{ github.workspace }}/apache-arrow
# condition && true-case || false-case
Expand Down
8 changes: 8 additions & 0 deletions packages/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,14 @@ class OpenArmCANPackageTask < PackageTask
"ghcr.io/#{github_repository.gsub("_", "-")}-package:#{super}"
end

def ubuntu_targets_default
[
["jammy", "22.04"],
["noble", "24.04"],
["resolute", "26.04"],
]
end

def dput_configuration_name
"openarm-ppa"
end
Expand Down
15 changes: 15 additions & 0 deletions packages/apt/ubuntu-resolute-arm64/from
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Copyright 2026 Enactic, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

--platform=linux/arm64 arm64v8/ubuntu:resolute
41 changes: 41 additions & 0 deletions packages/apt/ubuntu-resolute/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Copyright 2026 Enactic, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

FROM ubuntu:resolute

RUN \
echo "debconf debconf/frontend select Noninteractive" | \
debconf-set-selections

ARG DEBUG

RUN \
quiet=$([ "${DEBUG}" = "yes" ] || echo "-qq") && \
apt update ${quiet} && \
apt install -y -V ${quiet} \
build-essential \
ccache \
cmake \
debhelper \
devscripts \
dh-python \
libcli11-dev \
nanobind-dev \
ninja-build \
pybuild-plugin-pyproject \
python3-all-dev \
python3-pathspec \
python3-pyproject-metadata \
python3-scikit-build-core && \
apt clean
Loading