Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
eigenpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stack Of Tasks
eigenpy
Commits
5279a151
Verified
Commit
5279a151
authored
2 years ago
by
Justin Carpentier
Browse files
Options
Downloads
Patches
Plain Diff
ci: enforce strategy
parent
a28bcaae
No related branches found
No related tags found
No related merge requests found
Pipeline
#24319
passed with warnings
2 years ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.github/workflows/macos-linux-conda.yml
+6
-4
6 additions, 4 deletions
.github/workflows/macos-linux-conda.yml
with
6 additions
and
4 deletions
.github/workflows/macos-linux-conda.yml
+
6
−
4
View file @
5279a151
name
:
C
I - EigenPy for Mac OS X/Linux via C
onda
name
:
Conda
-CI
on
:
[
push
,
pull_request
]
jobs
:
eigenpy-conda
:
name
:
CI on ${{ matrix.os }} via Conda
name
:
${{ matrix.os }} - ${{ matrix.build_type }} ${{ matrix.cxx_options }}
runs-on
:
${{ matrix.os }}
env
:
CCACHE_DIR
:
/github/home/.ccache
# Enable ccache
...
...
@@ -13,6 +13,8 @@ jobs:
fail-fast
:
false
matrix
:
os
:
[
"
ubuntu-latest"
,
"
macos-latest"
]
cxx_options
:
[
'
'
,
'
-mavx2'
]
build_type
:
[
Release
,
Debug
]
steps
:
-
uses
:
actions/checkout@v2
...
...
@@ -29,7 +31,7 @@ jobs:
-
uses
:
actions/cache@v2
with
:
path
:
${{ env.CCACHE_DIR }}
key
:
ccache-${{ matrix.os }}
key
:
ccache-${{ matrix.os }}
-${{ matrix.build_type }}-${{ matrix.cxx_options }}
-
name
:
Install cmake and update conda
shell
:
bash -l {0}
...
...
@@ -47,7 +49,7 @@ jobs:
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX -DCMAKE_BUILD_TYPE=Release -DPYTHON_EXECUTABLE=$(which python3) -DGENERATE_PYTHON_STUBS=ON
cmake .. -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX -DCMAKE_BUILD_TYPE=Release -DPYTHON_EXECUTABLE=$(which python3) -DGENERATE_PYTHON_STUBS=ON
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DCMAKE_CXX_FLAGS=${{ matrix.cxx_options }}
make
make build_tests
export CTEST_OUTPUT_ON_FAILURE=1
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment