-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #55 from robotology/feat/addCondaCi
- Loading branch information
Showing
2 changed files
with
67 additions
and
12 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
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,62 @@ | ||
name: Continuous Integration with conda dependencies | ||
|
||
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 }}@conda]' | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
build_type: [Release] | ||
os: [ubuntu-latest, macos-latest] | ||
fail-fast: false | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- uses: conda-incubator/setup-miniconda@v2 | ||
with: | ||
mamba-version: "*" | ||
channels: conda-forge,robotology | ||
channel-priority: true | ||
|
||
- name: Dependencies | ||
shell: bash -l {0} | ||
run: | | ||
# Workaround for https://github.com/conda-incubator/setup-miniconda/issues/186 | ||
conda config --remove channels defaults | ||
# Compilation related dependencies | ||
mamba install cmake compilers make ninja pkg-config | ||
# Actual dependencies | ||
mamba install mesa mesalib qt boost-cpp ycm-cmake-modules | ||
- name: Configure [Linux&macOS] | ||
if: contains(matrix.os, 'macos') || contains(matrix.os, 'ubuntu') | ||
shell: bash -l {0} | ||
run: | | ||
mkdir -p build | ||
cd build | ||
cmake -GNinja \ | ||
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DCMAKE_INSTALL_PREFIX=${GITHUB_WORKSPACE}/install .. | ||
# - name: Configure [Windows] | ||
# if: contains(matrix.os, 'windows') | ||
# shell: bash -l {0} | ||
# run: | | ||
# mkdir -p build | ||
# cd build | ||
# cmake -G"Visual Studio 16 2019" \ | ||
# -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} .. | ||
|
||
- name: Build and install | ||
shell: bash -l {0} | ||
run: | | ||
cd build | ||
cmake --build . --config ${{ matrix.build_type }} --target install |