-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'gz-common5' into ahcorde/3/coverage_loaders
- Loading branch information
Showing
399 changed files
with
22,037 additions
and
24,583 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
libassimp-dev | ||
libavcodec-dev | ||
libavdevice-dev | ||
libavformat-dev | ||
libavutil-dev | ||
libfreeimage-dev | ||
libgdal-dev | ||
libgts-dev | ||
libignition-cmake2-dev | ||
libignition-math6-dev | ||
libgz-cmake3-dev | ||
libgz-math7-dev | ||
libgz-utils2-dev | ||
libswscale-dev | ||
libtinyxml2-dev | ||
pkg-config | ||
ruby-ronn | ||
uuid-dev |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: macOS latest | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
env: | ||
PACKAGE: gz-common5 | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Homebrew | ||
id: set-up-homebrew | ||
uses: Homebrew/actions/setup-homebrew@master | ||
- run: brew config | ||
|
||
- name: Install base dependencies | ||
run: | | ||
brew tap osrf/simulation; | ||
# check for ci_matching_branch | ||
brew install wget | ||
wget https://github.com/gazebo-tooling/release-tools/raw/master/jenkins-scripts/tools/detect_ci_matching_branch.py | ||
TRY_BRANCH="${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" | ||
if python3 detect_ci_matching_branch.py ${TRY_BRANCH} | ||
then | ||
echo "# BEGIN SECTION: trying to checkout branch ${TRY_BRANCH} from osrf/simulation" | ||
pushd $(brew --repo osrf/simulation) | ||
git fetch origin ${TRY_BRANCH} || true | ||
git checkout ${TRY_BRANCH} || true | ||
popd | ||
echo '# END SECTION' | ||
fi | ||
# gz-math7 has problems with swig, remove it for now | ||
brew remove swig || true | ||
brew install --only-dependencies ${PACKAGE}; | ||
- run: mkdir build | ||
- name: cmake | ||
working-directory: build | ||
run: cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local/Cellar/${PACKAGE}/HEAD | ||
- run: make | ||
working-directory: build | ||
- run: make test | ||
working-directory: build | ||
env: | ||
CTEST_OUTPUT_ON_FAILURE: 1 | ||
- name: make install | ||
working-directory: build | ||
run: | | ||
make install; | ||
brew link ${PACKAGE}; |
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.