Skip to content

Commit 252a9cb

Browse files
authored
Fix Ci pipeline (#235)
* Remove depreciated install-full-dependencies * Update CI container * Run SysId tests on self hosted runner
1 parent ac0cfce commit 252a9cb

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.github/workflows/sysid_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ on:
1010

1111
jobs:
1212
build:
13-
runs-on: ubuntu-latest
13+
runs-on: [self-hosted, linux]
1414
timeout-minutes: 45
1515
strategy:
1616
fail-fast: false
1717
matrix:
1818
container:
19-
- "px4io/px4-dev-simulation-focal:2020-11-18" # Gazebo 11
19+
- "px4io/px4-dev-simulation-focal:2021-05-31" # Gazebo 11
2020
container: ${{ matrix.container }}
2121
steps:
2222
- uses: actions/checkout@v1

Makefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ submodulesupdate:
1515
install-dependencies:
1616
pip3 install -r Tools/parametric_model/requirements.txt
1717

18-
install-full-depdencies: install-dependencies
19-
pip3 install Tools/parametric_model/libs/vpselector
20-
2118
docker-build:
2219
docker build -f docker/Dockerfile --tag ${registry}:${version} .
2320

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ source ~/.bashrc
4242

4343
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.
4444

45-
Install the dependencies including submodule dependencies using:
45+
Install the dependencies using:
4646

4747
```
48-
install-full-depdencies
48+
make install-depdencies
4949
```
5050

5151
## Build

0 commit comments

Comments
 (0)