Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Ci pipeline #235

Merged
merged 3 commits into from
Nov 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/sysid_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: [self-hosted, linux]
timeout-minutes: 45
strategy:
fail-fast: false
matrix:
container:
- "px4io/px4-dev-simulation-focal:2020-11-18" # Gazebo 11
- "px4io/px4-dev-simulation-focal:2021-05-31" # Gazebo 11
container: ${{ matrix.container }}
steps:
- uses: actions/checkout@v1
Expand Down
3 changes: 0 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ submodulesupdate:
install-dependencies:
pip3 install -r Tools/parametric_model/requirements.txt

install-full-depdencies: install-dependencies
pip3 install Tools/parametric_model/libs/vpselector

docker-build:
docker build -f docker/Dockerfile --tag ${registry}:${version} .

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ source ~/.bashrc

The use the parametric model structure you need to install python 3.8 and the needed python libraries. It is strongly advised to install the pip packages in a [virtual enviroment](https://docs.python.org/3/tutorial/venv.html) setup for this project.

Install the dependencies including submodule dependencies using:
Install the dependencies using:

```
install-full-depdencies
make install-depdencies
```

## Build
Expand Down