Skip to content

Commit

Permalink
Merge pull request #16 from nim65s/master
Browse files Browse the repository at this point in the history
update ci
  • Loading branch information
nim65s authored Jul 30, 2024
2 parents 958547a + f4acb3b commit 93ac37d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: /
target-branch: devel
schedule:
interval: monthly
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
name: "Test ${{ matrix.pm }} on ${{ matrix.os }}"
runs-on: "${{ matrix.os }}-latest"
strategy:
fail-fast: false
matrix:
pm: ["pip", "conda", "nix"]
os: ["ubuntu", "macos", "windows"]
Expand Down Expand Up @@ -43,7 +44,7 @@ jobs:

# conda
- if: matrix.pm == 'conda'
uses: conda-incubator/setup-miniconda@v2
uses: conda-incubator/setup-miniconda@v3
- if: matrix.pm == 'conda'
run: conda install -n test -c conda-forge pinocchio
- if: matrix.pm == 'conda'
Expand All @@ -58,8 +59,8 @@ jobs:
run: nix-channel --update
- if: matrix.pm == 'nix'
run: >
nix shell 'nixpkgs#python310Packages.pinocchio' -c
nix develop 'nixpkgs#python310Packages.pinocchio' -c
nix shell 'nixpkgs#python311Packages.pinocchio' -c
nix develop 'nixpkgs#python311Packages.pinocchio' -c
env | grep .=. >> $GITHUB_ENV
# robotpkg
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ set(PROJECT_URL "http://github.com/stack-of-tasks/${PROJECT_NAME}")
project(${PROJECT_NAME})

# pinocchio dependency
find_package(pinocchio 2.7.0 REQUIRED)
find_package(pinocchio REQUIRED)

# Create the main executable
add_executable(main main.cpp)
Expand Down

0 comments on commit 93ac37d

Please sign in to comment.