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 e10859a commit eff9649Copy full SHA for eff9649
.github/workflows/basic-build-ci.yaml
@@ -0,0 +1,33 @@
1
+name: Basic Build Workflow
2
+
3
+on:
4
+ - pull_request
5
+ - push
6
7
+jobs:
8
+ build-foxy:
9
+ runs-on: ubuntu-latest
10
+ strategy:
11
+ fail-fast: false
12
+ container:
13
+ image: rostooling/setup-ros-docker:ubuntu-focal-ros-foxy-ros-base-latest
14
+ steps:
15
+ - name: Fix Bugs in ros-tooling/action-ros-ci
16
+ run: sudo chown -R rosbuild:rosbuild "$HOME" .
17
+ - name: Run Tests
18
+ uses: ros-tooling/[email protected]
19
+ with:
20
+ package-name: |
21
+ joy
22
+ joy_linux
23
+ sdl2_vendor
24
+ wiimote
25
+ wiimote_msgs
26
+ source-ros-binary-installation: foxy
27
+ vcs-repo-file-url: ""
28
+ - name: Upload logs
29
+ uses: actions/upload-artifact@v1
30
31
+ name: colcon-logs
32
+ path: ros_ws/log
33
+ if: always()
0 commit comments