Skip to content

Commit

Permalink
Merge pull request #5 from ihuicatl/workflow
Browse files Browse the repository at this point in the history
Add workflow for building test package
  • Loading branch information
IsabelParedes authored Oct 9, 2023
2 parents 0c2c986 + cea398b commit 6b6c297
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: build-humble
on:
push:
branches: [main]
pull_request:
branches: ['*']

jobs:
build-package:
runs-on: ubuntu-latest

steps:
- name: Create ROS 2 workspace
shell: bash -eux {0}
run: mkdir -p ros-workspace/src

# Clone this repo
- name: Checkout
uses: actions/checkout@v3
with:
path: ros-workspace/src/rmw_wasm

# Runs action and builds package
- name: Cross-compile package
uses: ihuicatl/[email protected]
with:
package: test_wasm
ros_distro: 'humble'
debug_mode: false
rmw_wasm: false

0 comments on commit 6b6c297

Please sign in to comment.