Skip to content

Commit

Permalink
[ci] Package for Ubuntu jammy
Browse files Browse the repository at this point in the history
  • Loading branch information
gergondet committed May 31, 2023
1 parent 2690d57 commit 98a9c2a
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, macos-latest, windows-latest]
os: [ubuntu-20.04, ubuntu-22.04, macos-latest, windows-latest]
build-type: [Debug, RelWithDebInfo]
compiler: [gcc, clang]
exclude:
Expand All @@ -25,7 +25,7 @@ jobs:

runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install pip for Python 2 (Ubuntu 20.04)
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
windows-options: -DPYTHON_BINDING:BOOL=OFF
- name: Upload documentation
# Only run on master branch and for one configuration
if: matrix.os == 'ubuntu-18.04' && matrix.build-type == 'RelWithDebInfo' && matrix.compiler == 'gcc' && github.ref == 'refs/heads/master'
if: matrix.os == 'ubuntu-20.04' && matrix.build-type == 'RelWithDebInfo' && matrix.compiler == 'gcc' && github.ref == 'refs/heads/master'
uses: jrl-umi3218/github-actions/upload-documentation@master
with:
GH_USER: gergondet
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,15 @@ jobs:
with:
deps: '["jrl-umi3218/Tasks"]'
latest-cmake: true
matrix: |
{
"dist": ["bionic", "focal", "jammy"],
"arch": ["amd64"],
"include":
[
{"dist": "bionic", "arch": "i386" }
]
}
secrets:
CLOUDSMITH_API_KEY: ${{ secrets.CLOUDSMITH_API_KEY }}
GH_TOKEN: ${{ secrets.GH_PAGES_TOKEN }}
24 changes: 12 additions & 12 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ Build-Depends: debhelper (>= 9),
libspacevecalg-dev,
libtinyxml2-dev,
libyaml-cpp-dev,
python-all,
python-dev,
python-pytest,
python-setuptools,
cython,
#PYTHON2 python-all,
#PYTHON2 python-dev,
#PYTHON2 python-pytest,
#PYTHON2 python-setuptools,
#PYTHON2 cython,
python-spacevecalg,
python3-all,
python3-dev,
python3-pytest,
python3-setuptools,
cython3,
python-spacevecalg,
python3-spacevecalg

Package: librbdyn-dev
Expand Down Expand Up @@ -75,12 +75,12 @@ Description: RBDyn API documentation
.
This package provides the complete API documentation in HTML format.

Package: python-rbdyn
Section: python
Architecture: any
Depends: ${python:Depends}, ${misc:Depends}, ${shlibs:Depends}, python-spacevecalg
Description: RBDyn Python bindings
Python bindings for the RBDyn library. Compatible with Python 2.
#PYTHON2 Package: python-rbdyn
#PYTHON2 Section: python
#PYTHON2 Architecture: any
#PYTHON2 Depends: ${python:Depends}, ${misc:Depends}, ${shlibs:Depends}, python-spacevecalg
#PYTHON2 Description: RBDyn Python bindings
#PYTHON2 Python bindings for the RBDyn library. Compatible with Python 2.

Package: python3-rbdyn
Section: python
Expand Down

0 comments on commit 98a9c2a

Please sign in to comment.