Skip to content

Commit

Permalink
fix: style missing files with black formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
sjschlapbach committed Apr 16, 2023
1 parent 5f69c97 commit 867e435
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 34 deletions.
66 changes: 33 additions & 33 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- master
pull_request:
branches:
- '*'
- "*"

jobs:
build:
Expand All @@ -15,40 +15,40 @@ jobs:
fail-fast: false
matrix:
container:
- 'px4io/px4-dev-simulation-focal:2021-05-31' # Gazebo 11
- 'px4io/px4-dev-simulation-bionic:2021-05-31' # Gazebo 9
- "px4io/px4-dev-simulation-focal:2021-05-31" # Gazebo 11
- "px4io/px4-dev-simulation-bionic:2021-05-31" # Gazebo 9
container: ${{ matrix.container }}
steps:
- uses: actions/checkout@v1
- name: submodule update
run: git submodule update --init --recursive
- name: Clone yaml cpp
run: git clone https://github.com/jbeder/yaml-cpp.git /yaml-cpp
- name: Install yaml-cpp
working-directory: /yaml-cpp
run: |
mkdir build
cd build
cmake ..
make
make install
- name: Install latest mavlink
run: git clone --depth 1 https://github.com/mavlink/c_library_v2.git /usr/local/include/mavlink/v2.0 && rm -rf /usr/local/include/mavlink/v2.0/.git
- name: Clone PX4
run: git clone https://github.com/PX4/PX4-Autopilot.git /PX4-Autopilot
- name: Build PX4 SITL Gazebo
working-directory: /PX4-Autopilot
run: |
make submodulesupdate
DONT_RUN=1 make px4_sitl gazebo-classic_iris
- name: Cmake Build
env:
PX4_ROOT: /PX4-Autopilot
run: |
mkdir build
cd build
cmake ..
make
- uses: actions/checkout@v1
- name: submodule update
run: git submodule update --init --recursive
- name: Clone yaml cpp
run: git clone https://github.com/jbeder/yaml-cpp.git /yaml-cpp
- name: Install yaml-cpp
working-directory: /yaml-cpp
run: |
mkdir build
cd build
cmake ..
make
make install
- name: Install latest mavlink
run: git clone --depth 1 https://github.com/mavlink/c_library_v2.git /usr/local/include/mavlink/v2.0 && rm -rf /usr/local/include/mavlink/v2.0/.git
- name: Clone PX4
run: git clone https://github.com/PX4/PX4-Autopilot.git /PX4-Autopilot
- name: Build PX4 SITL Gazebo
working-directory: /PX4-Autopilot
run: |
make submodulesupdate
DONT_RUN=1 make px4_sitl gazebo-classic_iris
- name: Cmake Build
env:
PX4_ROOT: /PX4-Autopilot
run: |
mkdir build
cd build
cmake ..
make
# - name: Unit Tests
# working-directory: build
# run: |
Expand Down
2 changes: 1 addition & 1 deletion Tools/parametric_model/src/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
from . import extractor_models
from .dynamics_model import DynamicsModel
from .multirotor_model import MultiRotorModel
from . model_config import ModelConfig
from .model_config import ModelConfig
from .fixedwing_model import FixedWingModel

0 comments on commit 867e435

Please sign in to comment.