-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add GitHub Actions CI #453
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
b08f8e7
Add GitHub Actions CI
traversaro 200c056
Fixup
traversaro e6961ed
fixup
traversaro 787ac8d
Update ci.yml
traversaro cd2a633
Update ci.yml
traversaro 2f72160
Update ci.yml
traversaro 3ec9d8b
Address Ugo's comment
traversaro File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,99 @@ | ||
name: C++ CI Workflow | ||
|
||
on: | ||
push: | ||
pull_request: | ||
schedule: | ||
# * is a special character in YAML so you have to quote this string | ||
# Execute a "nightly" build at 2 AM UTC | ||
- cron: '0 2 * * *' | ||
|
||
|
||
jobs: | ||
build: | ||
name: '[${{ matrix.os }}@${{ matrix.build_type }}@yarp:${{ matrix.yarp_version }}@gazebo:${{ matrix.gazebo_version }}]' | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
build_type: [Release, Debug] | ||
os: [ubuntu-latest, macOS-latest] | ||
gazebo_version: [gazebo9, gazebo10] | ||
yarp_version: [devel] | ||
|
||
steps: | ||
- uses: actions/checkout@master | ||
|
||
# Print environment variables to simplify development and debugging | ||
- name: Environment Variables | ||
shell: bash | ||
run: env | ||
|
||
# ============ | ||
# DEPENDENCIES | ||
# ============ | ||
|
||
- name: Dependencies [macOS] | ||
if: matrix.os == 'macOS-latest' | ||
shell: bash | ||
run: | | ||
brew cask install xquartz | ||
brew install ace eigen opencv@3 osrf/simulation/${{ matrix.gazebo_version }} | ||
|
||
- name: Dependencies [Ubuntu] | ||
if: matrix.os == 'ubuntu-latest' | ||
shell: bash | ||
run: | | ||
sudo sh -c 'echo "deb http://packages.osrfoundation.org/gazebo/ubuntu `lsb_release -cs` main" > /etc/apt/sources.list.d/gazebo-latest.list' | ||
wget http://packages.osrfoundation.org/gazebo.key -O - | sudo apt-key add - | ||
sudo apt-get update | ||
sudo apt-get install git build-essential cmake libace-dev libeigen3-dev libopencv-dev | ||
sudo apt-get install lib${{ matrix.gazebo_version }}-dev | ||
|
||
- name: Source-based Dependencies [Ubuntu/macOS] | ||
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macOS-latest' | ||
shell: bash | ||
run: | | ||
# YCM | ||
git clone https://github.com/robotology/ycm | ||
cd ycm | ||
git checkout devel | ||
mkdir -p build | ||
cd build | ||
cmake -DCMAKE_INSTALL_PREFIX=${GITHUB_WORKSPACE}/install .. | ||
cmake --build . --config ${{ matrix.build_type }} --target install | ||
# YARP | ||
cd ${GITHUB_WORKSPACE} | ||
git clone https://github.com/robotology/yarp | ||
cd yarp | ||
git checkout ${{ matrix.yarp_version }} | ||
mkdir -p build | ||
cd build | ||
cmake -DCMAKE_PREFIX_PATH=${GITHUB_WORKSPACE}/install -DCMAKE_INSTALL_PREFIX=${GITHUB_WORKSPACE}/install .. | ||
cmake --build . --config ${{ matrix.build_type }} --target install | ||
|
||
# =================== | ||
# CMAKE-BASED PROJECT | ||
# =================== | ||
|
||
- name: Configure [Ubuntu/macOS] | ||
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macOS-latest' | ||
shell: bash | ||
run: | | ||
mkdir -p build | ||
cd build | ||
cmake -DCMAKE_PREFIX_PATH=${GITHUB_WORKSPACE}/install -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \ | ||
-DCMAKE_INSTALL_PREFIX=${GITHUB_WORKSPACE}/install .. | ||
|
||
- name: Build | ||
shell: bash | ||
run: | | ||
cd build | ||
cmake --build . --config ${{ matrix.build_type }} | ||
|
||
- name: Install [Ubuntu/macOS] | ||
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macOS-latest' | ||
shell: bash | ||
run: | | ||
cd build | ||
cmake --build . --config ${{ matrix.build_type }} --target install | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would add
cd ${GITHUB_WORKSPACE}
hereThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch, fixed it in 3ec9d8b .