We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7497e4e commit 53a7b82Copy full SHA for 53a7b82
.github/workflows/main.yaml
@@ -0,0 +1,29 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - '*'
7
8
+jobs:
9
+ ci:
10
+ strategy:
11
+ matrix:
12
+ include:
13
+ - os: ubuntu-22.04
14
+ distro: humble
15
16
+ distro: iron
17
18
+ distro: rolling
19
+ fail-fast: false
20
+ runs-on: ${{ matrix.os }}
21
+ steps:
22
+ - uses: actions/checkout@v1
23
+ - uses: ros-tooling/[email protected]
24
+ with:
25
+ required-ros-distributions: ${{ matrix.distro }}
26
+ - run: sudo apt remove python3-openssl -y
27
28
29
+ target-ros2-distro: ${{ matrix.distro }}
Jenkinsfile
0 commit comments