Skip to content

Commit

Permalink
Small changes related to replacing travis by GH actions (#409)
Browse files Browse the repository at this point in the history
* (README) replace travis badge by GH actions badge

* (Contributing) replace travis by GH Actions

* (npmignore) remove .travis.yml, add .github

* (actions) also test noetic
  • Loading branch information
MatthijsBurgh committed Jun 20, 2021
1 parent 7200638 commit 8b39275
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ros_distro: [kinetic, melodic]
ros_distro: [kinetic, melodic, noetic]
steps:
- uses: actions/checkout@v2
- name: Docker pull
Expand Down
2 changes: 1 addition & 1 deletion .npmignore
Expand Up @@ -2,6 +2,6 @@ test
examples
Gruntfile.js
.gitignore
.travis.yml
.github
bower.json
*.md
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Expand Up @@ -27,7 +27,7 @@ To run the build tasks:
1. `cd /path/to/roslibjs/`
2. `grunt build`

`grunt build` will concatenate and minimize the files under src and replace roslib.js and roslib.min.js in the build directory. It will also run the linter and test cases. This is what [Travis CI](https://travis-ci.org/RobotWebTools/roslibjs) runs when a Pull Request is submitted.
`grunt build` will concatenate and minimize the files under src and replace roslib.js and roslib.min.js in the build directory. It will also run the linter and test cases. This is what [GH Actions](https://github.com/RobotWebTools/roslibjs/actions) runs when a Pull Request is submitted.

`grunt dev` will watch for any changes to any of the src/ files and automatically concatenate and minimize the files. This is ideal for those developing as you should only have to run `grunt dev` once.

Expand Down
5 changes: 3 additions & 2 deletions README.md
@@ -1,5 +1,6 @@
roslibjs [![Build Status](https://api.travis-ci.org/RobotWebTools/roslibjs.png)](https://travis-ci.org/RobotWebTools/roslibjs)
========
# roslibjs

[![CI](https://github.com/RobotWebTools/roslibjs/actions/workflows/main.yml/badge.svg)](https://github.com/RobotWebTools/roslibjs/actions/workflows/main.yml)

#### The Standard ROS JavaScript Library
For full documentation, see [the ROS wiki](http://wiki.ros.org/roslibjs) or check out some [working demos](http://robotwebtools.org/demos.html).
Expand Down

0 comments on commit 8b39275

Please sign in to comment.