Skip to content

Commit f023733

Browse files
author
github
committed
Updated packages (squashed)
0 parents  commit f023733

21 files changed

+94
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name: Deploy
2+
3+
on:
4+
push:
5+
branches:
6+
- debs
7+
8+
# Allows you to run this workflow manually from the Actions tab
9+
workflow_dispatch:
10+
11+
jobs:
12+
13+
build:
14+
runs-on: ubuntu-latest
15+
env:
16+
17+
RELEASE_KEY: ${{ secrets.RELEASE_KEY }}
18+
PUSH_TOKEN: ${{ secrets.PUSH_TOKEN }}
19+
20+
steps:
21+
22+
- uses: actions/checkout@v3
23+
with:
24+
fetch-depth: 0 # fetch the whole history
25+
26+
- name: Checkout CI scripts
27+
uses: actions/checkout@v3
28+
with:
29+
repository: ctu-mrs/ci_scripts
30+
branch: ros2
31+
path: .ci_scripts
32+
token: ${{ secrets.PUSH_TOKEN }}
33+
34+
- name: Checkout PPA's master
35+
uses: actions/checkout@v3
36+
with:
37+
repository: ctu-mrs/ppa2-testing
38+
path: .master
39+
ref: master
40+
token: ${{ secrets.PUSH_TOKEN }}
41+
42+
- name: Release
43+
run: .ci_scripts/ppa_maintanance/release.sh testing from-debs-branch
44+
45+
- name: Push
46+
uses: peaceiris/actions-gh-pages@v3
47+
with:
48+
github_token: ${{ secrets.GITHUB_TOKEN }}
49+
publish_dir: ./
50+
force_orphan: true

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*.swp
2+
*.swo
3+
4+
.ci_scripts
5+
.master

generated_mrs_amd64.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
mrs_msgs:
2+
ubuntu: [ros-jazzy-mrs-msgs]
3+
4+
mrs_mpc_solvers:
5+
ubuntu: [ros-jazzy-mrs-mpc-solvers]
6+
7+
mrs_lib:
8+
ubuntu: [ros-jazzy-mrs-lib]
9+
10+
mrs_uav_hw_api:
11+
ubuntu: [ros-jazzy-mrs-uav-hw-api]
12+
13+
mrs_multirotor_simulator:
14+
ubuntu: [ros-jazzy-mrs-multirotor-simulator]
15+
16+
mrs_uav_managers:
17+
ubuntu: [ros-jazzy-mrs-uav-managers]
18+
19+
mrs_uav_state_estimators:
20+
ubuntu: [ros-jazzy-mrs-uav-state-estimators]
21+
22+
mrs_uav_controllers:
23+
ubuntu: [ros-jazzy-mrs-uav-controllers]
24+

generated_mrs_arm64.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
mrs_msgs:
2+
ubuntu: [ros-jazzy-mrs-msgs]
3+
4+
mrs_lib:
5+
ubuntu: [ros-jazzy-mrs-lib]
6+
7+
mrs_multirotor_simulator:
8+
ubuntu: [ros-jazzy-mrs-multirotor-simulator]
9+

generated_thirdparty_amd64.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
nlopt:
2+
ubuntu: [ros-jazzy-nlopt]
3+

generated_thirdparty_arm64.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
nlopt:
2+
ubuntu: [ros-jazzy-nlopt]
3+

init.yaml

Whitespace-only changes.
2.91 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)