Debugging yaml file
parent
7e2fe4704f
commit
cf79e7dba0
|
@ -18,14 +18,15 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
# Github Actions requires a single row to be added to the build matrix.
|
# Github Actions requires a single row to be added to the build matrix.
|
||||||
# See https://help.github.com/en/articles/workflow-syntax-for-github-actions.
|
# See https://help.github.com/en/articles/workflow-syntax-for-github-actions.
|
||||||
name: [
|
name:
|
||||||
|
[
|
||||||
ubuntu-20.04-gcc-9,
|
ubuntu-20.04-gcc-9,
|
||||||
ubuntu-20.04-gcc-9-tbb,
|
ubuntu-20.04-gcc-9-tbb,
|
||||||
ubuntu-20.04-clang-9,
|
ubuntu-20.04-clang-9,
|
||||||
macOS-11-xcode-13.4.1,
|
macOS-11-xcode-13.4.1,
|
||||||
]
|
]
|
||||||
|
|
||||||
build_type: [Debug, Release]
|
build_type: [Debug]
|
||||||
python_version: [3]
|
python_version: [3]
|
||||||
include:
|
include:
|
||||||
- name: ubuntu-20.04-gcc-9
|
- name: ubuntu-20.04-gcc-9
|
||||||
|
@ -43,8 +44,6 @@ jobs:
|
||||||
os: ubuntu-20.04
|
os: ubuntu-20.04
|
||||||
compiler: clang
|
compiler: clang
|
||||||
version: "9"
|
version: "9"
|
||||||
build_type: Debug
|
|
||||||
python_version: "3"
|
|
||||||
|
|
||||||
- name: macOS-11-xcode-13.4.1
|
- name: macOS-11-xcode-13.4.1
|
||||||
os: macOS-11
|
os: macOS-11
|
||||||
|
@ -86,15 +85,9 @@ jobs:
|
||||||
brew tap ProfFan/robotics
|
brew tap ProfFan/robotics
|
||||||
brew install cmake ninja
|
brew install cmake ninja
|
||||||
brew install boost
|
brew install boost
|
||||||
if [ "${{ matrix.compiler }}" = "gcc" ]; then
|
|
||||||
brew install gcc@${{ matrix.version }}
|
|
||||||
echo "CC=gcc-${{ matrix.version }}" >> $GITHUB_ENV
|
|
||||||
echo "CXX=g++-${{ matrix.version }}" >> $GITHUB_ENV
|
|
||||||
else
|
|
||||||
sudo xcode-select -switch /Applications/Xcode.app
|
sudo xcode-select -switch /Applications/Xcode.app
|
||||||
echo "CC=clang" >> $GITHUB_ENV
|
echo "CC=clang" >> $GITHUB_ENV
|
||||||
echo "CXX=clang++" >> $GITHUB_ENV
|
echo "CXX=clang++" >> $GITHUB_ENV
|
||||||
fi
|
|
||||||
- name: Set GTSAM_WITH_TBB Flag
|
- name: Set GTSAM_WITH_TBB Flag
|
||||||
if: matrix.flag == 'tbb'
|
if: matrix.flag == 'tbb'
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in New Issue