-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit fc96afc
Showing
16 changed files
with
288 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Deploy | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
paths-ignore: | ||
- '**/README.md' | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
||
build: | ||
runs-on: ubuntu-20.04 | ||
env: | ||
|
||
RELEASE_KEY: ${{ secrets.RELEASE_KEY }} | ||
PUSH_TOKEN: ${{ secrets.PUSH_TOKEN }} | ||
|
||
steps: | ||
|
||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 # fetch the whole history | ||
|
||
- name: Checkout CI scripts | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: ctu-mrs/ci_scripts | ||
path: .ci_scripts | ||
token: ${{ secrets.PUSH_TOKEN }} | ||
|
||
- name: Checkout PPA debs | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: ctu-mrs/ppa-testing | ||
path: .debs | ||
ref: debs | ||
token: ${{ secrets.PUSH_TOKEN }} | ||
|
||
- name: Release | ||
run: .ci_scripts/ppa_maintanance/release.sh testing from-master-branch | ||
|
||
- name: Push | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./ | ||
force_orphan: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Squash | ||
|
||
on: | ||
|
||
schedule: | ||
- cron: '0 0 * * *' # at the end of every day | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
||
build: | ||
runs-on: ubuntu-20.04 | ||
env: | ||
|
||
RELEASE_KEY: ${{ secrets.RELEASE_KEY }} | ||
PUSH_TOKEN: ${{ secrets.PUSH_TOKEN }} | ||
|
||
steps: | ||
|
||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 # fetch the whole history | ||
|
||
- name: Checkout CI scripts | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: ctu-mrs/ci_scripts | ||
path: .ci_scripts | ||
token: ${{ secrets.PUSH_TOKEN }} | ||
|
||
- name: Squash debs | ||
if: "!contains(github.event.head_commit.message, 'squashed')" | ||
run: .ci_scripts/ppa_maintanance/squash_branch.sh github.com/ctu-mrs/ppa-testing debs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
*.swp | ||
*.swo | ||
|
||
act.sh | ||
|
||
.ci_scripts | ||
.debs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
BSD 3-Clause License | ||
|
||
Copyright (c) 2023, Multi-robot Systems (MRS) group at Czech Technical University in Prague | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
||
1. Redistributions of source code must retain the above copyright notice, this | ||
list of conditions and the following disclaimer. | ||
|
||
2. Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
|
||
3. Neither the name of the copyright holder nor the names of its | ||
contributors may be used to endorse or promote products derived from | ||
this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | ||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# PPA testing | ||
|
||
Personal Package Archive (PPA) for testing MRS deb packages. | ||
This PPA **is not meant** to be used by user. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
deb [signed-by=/etc/apt/trusted.gpg.d/ctu-mrs.gpg] https://ctu-mrs.github.io/ppa-testing ./ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Package: * | ||
Pin: release o=ctu-mrs,l=testing,c= | ||
Pin-Priority: 1666 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
-----BEGIN PGP PUBLIC KEY BLOCK----- | ||
|
||
mQINBGSxfAQBEACw1jeV9Rx2V6/xkdUgAzYNQR1XaIKCxcjD9B80MeWzBUfBo2EE | ||
ip1+lphaeCj792a5Bg+a/nRPf+D2NH+lARJt2lXTHquMOqQR0evaEu93/CDkFezZ | ||
lYwIFJ1PsYcsJuTcqQJ/XmtDwHuJQDBW2OrZFEC3/bsVRbQ3PRMlQ2afdkb8Pzup | ||
bMe3bdDKy5YwZfKotIpkqLebeXb27BONbTWQMGtb7ws4A9NMkNenQSbLb6sTGvj1 | ||
1Whtm0Hev4QXaKwr097R170qb2Y+y9wDzeCTLrJLZoaivKfv1QH+YwOtkcxUx8AC | ||
MCZsc1c8iQ10c1msbBr1che/Eil4UR5TxC5J6MHRvqUAv2H/ENb7akbd4qsbOkx4 | ||
RvLdVA5TzYBt7CFMLRJI4g5D3BKGDt9eB2O7FsPqD2wloRnEDq8zWTYTz2u14HZb | ||
c6U3RR9TRkxIT069+yGV5TT9zXIqQ0J1TrUj19Wt2PVFGDI+/fq37BYmPhobh7Bd | ||
MEwmdje7SRjEcDxIqJAaAXJTlWlw/F5e/KvmpyuaFAmSt6Xze0uZ+ENs5P2C5nl3 | ||
GX62Bie10BKmQHngvJH8Td1FRxNv7UP2FYW2GS/XO+dpT8ncepDaUSSKnqsIxfwB | ||
qhmwvjH2XrinnLuFe+Wpq3vq0XAOYbtPcHoPUwFk/yKM4zn5ga6NTZEkDwARAQAB | ||
tCNUb21hcyBCYWNhIDx0b21hcy5iYWNhQGZlbC5jdnV0LmN6PokCTgQTAQoAOBYh | ||
BG9N3XmMRsvxkfb8v7KdNgAcGY0RBQJksXwEAhsDBQsJCAcCBhUKCQgLAgQWAgMB | ||
Ah4BAheAAAoJELKdNgAcGY0RkhYP/jQIZw79iZ2MpCp8EYDWon8GKcSsXsvtKlq6 | ||
rv/WufhHKg+DjGtaa+HEVT55E42j86NBkUzuWTKjpJKFFbZUGosx1xzAM1NczoLK | ||
jApcaRQ0O1Ufj6U1O2lJX4XKrNeqlybmME8Ac38BOXQq6WtqUOR5pq8ikjG3zr/G | ||
j0AZ8axjYXa9LdB9vymbLOhURbiwVMKin9NiaCTUXK7HfZPOBm2FoPYuGktq58bd | ||
9Lgk0Hovas18VamTRzU01WnO9Abde5uT8I6x7zDShXIe7fVdEZOyxAirBcyrq8lW | ||
syk5RFH+3BCa7OKpJ0Y+6cpKV6/Aq5m97NvY+THcEeNb55J9EAyodsyb4CPY+kdS | ||
tdea6TNZRQh+IDarN58PDJDgoi+ugdAdKNoBQ8ZMgkwhIas+OzkQGc4FJYoVWk2b | ||
9ZBbj424GBC9nRwLXy5B6Pr/1b/SiS54CaGLWiye5GFMN/8tnvDgLdvQAjB+ZQfG | ||
wl6I7OtG2xp8TL1WPHnFO9TceQT0+Fh/EZ74R6uVLV2We1sKKJhh7wzpU1GWK6U6 | ||
FeOoLvbMt61kMSN254AJe1fqL8bovRA51HKPD8t36wDznoEk2znXOMIB58fb6wT1 | ||
djORTouHQaR1V8OAMUZjPRwE4/GgDTQyQ+EvtelVuHNrAXdnYXJB2hxS4FGVbIei | ||
b66VFz5VuQINBGSxfAQBEAC40u8p14D3RXgm+Zz9Ob+dCjoz2glWezTVMQyPtXoB | ||
bhqoHOeWi75R6LZmiy8c0WMGCdBAITeeVNeAsucKRAYQzaMEPc9lQCing2nrXCau | ||
0lF/xD87ci8lLx8OqB+4Fe6nQmNqPUi+sodkiw/PemVp+2r+NKslTfSlhTlar/dZ | ||
ra+nCXR8AkjQwlGLXzhRXYb9kyAy5h7IClvPF60Xa8xeLCDUbtJtZclwn2XevkKa | ||
6J3ytg5W18yRrhCQIthoEUwp1tcB+VIPm8cirVJG7Tux9CG0hJesWx+0t+9cVXef | ||
MohT+N09TU11/07GvDMdcg/IfIH5NCIqIuTXGt6LqdB64wKqz/JcELXUBYmK/qju | ||
s+1LMTtlqkxHX9VOZg4/CpaDyl1IyEjTOmkHlKHB+is+4xKchlwJOrAZNph8r/Xd | ||
65Dqtv/6z35yeaQtKmvG8PbfeYHwgAmVzYFy4+96uO09sQG5vEI6nsd4Jnu6NVQc | ||
hn5EnYlLMsSPoQYAcG76LOavpwo/sSRZ6q/WZWCenq/NqQ0/htuZN9HZUy1woHMA | ||
s2rj7934KRjELH0sYiPMlEky65q7pMfLJ/AaICW2rQSfyblJaZMHBiPT9yq6qv1A | ||
fLVHjRIFvsUzhP9jLE1CPU9jSfFBdcz1/eTABdCqwGbt3Z0Pwv2NcrJTzO+zqfJh | ||
JwARAQABiQI2BBgBCgAgFiEEb03deYxGy/GR9vy/sp02ABwZjREFAmSxfAQCGwwA | ||
CgkQsp02ABwZjRFW3Q//SGTMxze5+H9qGhTZ4jQCyHbMeW3LPYinBOAXJ6/ZyPjr | ||
//b3bGmhdxQH7PRyeeSGX2Bsbae2QgewofLTVk9kW47re80FnaSNs5CTRo6XqCii | ||
Gl1ucWAOFv3Z/eCJ1Prbj9xhhttMNT81GviXfFr6XaKENDZk0+5lMvss3cqUlJA8 | ||
qeLlHxdeXHi9jG107+9tm3neo05/jA6XYnTpCatWkmPRcYQ/ARloHLbB5LyxAC8M | ||
VlQULRBrNrBiPpChz5yV+Vt03D7OX7c47skiX2qF3GLef9CQ1A05vBZY2S3QmbDO | ||
G9lFCh1+OXK24NeoRhtrqrpeix6ABKk13HH4yN2MN7Dn5qL7R5mNONNGNrVD4by4 | ||
ideQ140vbRud2AIw+Mz6KFqrmgj4thxy0rSAlvU2WTjeiBgk0E5pgoHWF+Y/yOij | ||
D4rL5pzVhs2AHK6KbA1of+KP1yIJ/iympXfhDlWuOv3oierXQO8+MQmm3cHDhXtQ | ||
7iWusv0gTEnN9Kh389DXbZqVemQ45+Ze8IIcp/SnNE11Wh2UYHX4J4J5a49nh3ZQ | ||
cK6HL3x0aRvMxsLaDUl0ZZbBquCJU/lqdwf9xAwXoTtIYj3fpHlqUTvLNN/AUwLA | ||
ACXtbzYkG8yLcz+y6Su/NQJfmPHXKYGGVTVMImRkyqbvfofeAHHF+wYLEW4lBUw= | ||
=UzbT | ||
-----END PGP PUBLIC KEY BLOCK----- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
yaml https://ctu-mrs.github.io/ppa-testing/generated_mrs_amd64.yaml | ||
yaml https://ctu-mrs.github.io/ppa-testing/generated_thirdparty_amd64.yaml | ||
yaml https://ctu-mrs.github.io/ppa-testing/handcrafted_amd64.yaml | ||
yaml https://ctu-mrs.github.io/ppa-testing/handcrafted_common.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
yaml https://ctu-mrs.github.io/ppa-testing/generated_mrs_arm64.yaml | ||
yaml https://ctu-mrs.github.io/ppa-testing/generated_thirdparty_arm64.yaml | ||
yaml https://ctu-mrs.github.io/ppa-testing/handcrafted_arm64.yaml | ||
yaml https://ctu-mrs.github.io/ppa-testing/handcrafted_common.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# this file defines the list of APT dependencies for ROS packages | ||
# | ||
# ros_package_dependency: | ||
# ubuntu: [apt dependencies] | ||
# | ||
|
||
dummy_node_to_have_something_here: | ||
ubuntu: [dummy_node_to_have_something_here] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# this file defines the list of APT dependencies for ROS packages | ||
# | ||
# ros_package_dependency: | ||
# ubuntu: [apt dependencies] | ||
# | ||
|
||
dummy_node_to_have_something_here: | ||
ubuntu: [dummy_node_to_have_something_here] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# this file defines the list of APT dependencies for ROS packages | ||
# | ||
# ros_package_dependency: | ||
# ubuntu: [apt dependencies] | ||
# | ||
|
||
# px4 is build using a custom script outside of the bloom pipeline | ||
px4: | ||
ubuntu: [ros-noetic-px4] | ||
|
||
# non-ROS dependencies managed by MRS | ||
mrs-geographiclib-datasets: | ||
ubuntu: [mrs-geographiclib-datasets] | ||
mrs-uav-shell-additions: | ||
ubuntu: [mrs-uav-shell-additions] | ||
coppelia-sim-edu: | ||
ubuntu: [coppelia-sim-edu] | ||
|
||
# other dependencies | ||
python3-jinja2: | ||
ubuntu: [python3-jinja2] | ||
python-is-python3: | ||
ubuntu: [python-is-python3] | ||
tmuxinator: | ||
ubuntu: [tmuxinator] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
trap 'last_command=$current_command; current_command=$BASH_COMMAND' DEBUG | ||
trap 'echo "$0: \"${last_command}\" command failed with exit code $?"' ERR | ||
|
||
echo "$0: Adding MRS Testing PPA repository" | ||
|
||
sudo apt-get -y install curl gpg dpkg-dev | ||
|
||
ARCH=$(dpkg-architecture -qDEB_HOST_ARCH) | ||
|
||
curl -s --compressed "https://ctu-mrs.github.io/ppa-testing/ctu-mrs.gpg" | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/ctu-mrs.gpg >/dev/null | ||
sudo curl -s --compressed -o /etc/apt/sources.list.d/ctu-mrs-testing.list "https://ctu-mrs.github.io/ppa-testing/ctu-mrs-apt.list" | ||
sudo curl -s --compressed -o /etc/apt/preferences.d/ctu-mrs-testing-preferences "https://ctu-mrs.github.io/ppa-testing/ctu-mrs-ppa-preferences.txt" | ||
sudo curl -s --compressed -o /etc/ros/rosdep/sources.list.d/ctu-mrs-testing.list "https://ctu-mrs.github.io/ppa-testing/ctu-mrs-$ARCH.list" | ||
sudo apt-get -y update | ||
|
||
rosdep update | ||
|
||
echo "$0: Finished adding MRS Testing PPA repository" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
trap 'last_command=$current_command; current_command=$BASH_COMMAND' DEBUG | ||
trap 'echo "$0: \"${last_command}\" command failed with exit code $?"' ERR | ||
|
||
echo "$0: Adding ROS PPA" | ||
|
||
sudo apt-get -y install wget lsb-release gnupg curl sudo | ||
|
||
sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-latest.list' | ||
|
||
curl -s https://raw.githubusercontent.com/ros/rosdistro/master/ros.asc | sudo apt-key add - | ||
|
||
sudo apt-get -y update | ||
|
||
sudo apt-get -y install python3-pip | ||
|
||
sudo pip3 install -U rosdep | ||
|
||
sudo rosdep init || echo "$0: rosdep already initialized" | ||
rosdep update | ||
|
||
echo "$0: ROS PPA added" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
|
||
echo "$0: Removing MRS Testing PPA repository" | ||
|
||
sudo rm /etc/apt/sources.list.d/ctu-mrs-testing.list | ||
sudo rm /etc/apt/preferences.d/ctu-mrs-testing-preferences | ||
sudo rm /etc/ros/rosdep/sources.list.d/ctu-mrs-testing.list | ||
|
||
sudo apt-get -y update | ||
rosdep update | ||
|
||
echo "$0: Finished removing MRS Testing PPA repository" |