Skip to content

Commit 93ac37d

Browse files
authored
Merge pull request #16 from nim65s/master
update ci
2 parents 958547a + f4acb3b commit 93ac37d

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

.github/dependabot.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: /
5+
target-branch: devel
6+
schedule:
7+
interval: monthly

.github/workflows/test.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
name: "Test ${{ matrix.pm }} on ${{ matrix.os }}"
1616
runs-on: "${{ matrix.os }}-latest"
1717
strategy:
18+
fail-fast: false
1819
matrix:
1920
pm: ["pip", "conda", "nix"]
2021
os: ["ubuntu", "macos", "windows"]
@@ -43,7 +44,7 @@ jobs:
4344

4445
# conda
4546
- if: matrix.pm == 'conda'
46-
uses: conda-incubator/setup-miniconda@v2
47+
uses: conda-incubator/setup-miniconda@v3
4748
- if: matrix.pm == 'conda'
4849
run: conda install -n test -c conda-forge pinocchio
4950
- if: matrix.pm == 'conda'
@@ -58,8 +59,8 @@ jobs:
5859
run: nix-channel --update
5960
- if: matrix.pm == 'nix'
6061
run: >
61-
nix shell 'nixpkgs#python310Packages.pinocchio' -c
62-
nix develop 'nixpkgs#python310Packages.pinocchio' -c
62+
nix shell 'nixpkgs#python311Packages.pinocchio' -c
63+
nix develop 'nixpkgs#python311Packages.pinocchio' -c
6364
env | grep .=. >> $GITHUB_ENV
6465
6566
# robotpkg

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ set(PROJECT_URL "http://github.com/stack-of-tasks/${PROJECT_NAME}")
88
project(${PROJECT_NAME})
99

1010
# pinocchio dependency
11-
find_package(pinocchio 2.7.0 REQUIRED)
11+
find_package(pinocchio REQUIRED)
1212

1313
# Create the main executable
1414
add_executable(main main.cpp)

0 commit comments

Comments
 (0)