-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'ign-fuel-tools4' into edit
- Loading branch information
Showing
19 changed files
with
146 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# More info: | ||
# https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners | ||
|
||
* @nkoenig | ||
tutorials/* @maryaB-osr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/sh -l | ||
|
||
set -x | ||
|
||
# Install | ||
make install | ||
|
||
# Compile examples | ||
cd ../examples | ||
mkdir build | ||
cd build | ||
cmake .. | ||
make |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Ubuntu Bionic CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
bionic-ci: | ||
runs-on: ubuntu-latest | ||
name: Ubuntu Bionic CI | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Bionic CI | ||
id: ci | ||
uses: ignition-tooling/ubuntu-bionic-ci-action@master | ||
with: | ||
apt-dependencies: 'pkg-config libcurl4-openssl-dev libjsoncpp-dev libzip-dev libgflags-dev libtinyxml2-dev lcov curl libyaml-dev libignition-cmake2-dev libignition-common3-dev libignition-math6-dev libignition-msgs5-dev' | ||
codecov-token: ${{ secrets.CODECOV_TOKEN }} | ||
script-after-make: ../.github/ci-bionic/after_make.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: PR Collection Labeler | ||
|
||
on: pull_request | ||
|
||
jobs: | ||
pr_collection_labeler: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Add collection labels | ||
if: github.event.action == 'opened' | ||
uses: ignition-tooling/pr-collection-labeler@v1 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
on: | ||
issues: | ||
types: [opened] | ||
pull_request: | ||
types: [opened] | ||
name: Ticket opened | ||
jobs: | ||
assign: | ||
name: Add ticket to inbox | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Add ticket to inbox | ||
uses: technote-space/create-project-card-action@v1 | ||
with: | ||
PROJECT: Core development | ||
COLUMN: Inbox | ||
GITHUB_TOKEN: ${{ secrets.TRIAGE_TOKEN }} | ||
CHECK_ORG_PROJECT: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
See the [Ignition Robotics contributing guide](https://bitbucket.org/ignitionrobotics/ign-gazebo/src/default/CONTRIBUTING.md). | ||
See the [Ignition Robotics contributing guide](https://ignitionrobotics.org/docs/all/contributing). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.