Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
* update to ubuntu-latest

* python3

* add missing include

* fork libopencm3 to fix makefile
  • Loading branch information
westlicht authored Nov 13, 2023
1 parent 082bec8 commit f0c2328
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
stm32:
name: Hardware Platform (STM32)
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -28,14 +28,14 @@ jobs:
files: build/deploy/**/*
sim_linux:
name: Simulator Platform (Linux)
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Dependencies
run: sudo apt install -y libsdl2-dev libasound2-dev mesa-common-dev python3.7 python3.7-dev
run: sudo apt install -y libsdl2-dev libasound2-dev mesa-common-dev python3 python3-dev
- name: Setup
run: make setup_sim
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[submodule "src/platform/stm32/libs/libopencm3"]
path = src/platform/stm32/libs/libopencm3
url = https://github.com/libopencm3/libopencm3.git
url = https://github.com/westlicht/libopencm3.git
[submodule "src/platform/sim/libs/soloud"]
path = src/platform/sim/libs/soloud
url = https://github.com/jarikomppa/soloud.git
Expand Down
1 change: 1 addition & 0 deletions src/apps/sequencer/engine/SortedQueue.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#include <array>
#include <utility>
#include <functional>
#include <cstddef>

template<typename T, size_t Capacity, typename Compare = std::less<T>>
class SortedQueue {
Expand Down
2 changes: 1 addition & 1 deletion src/platform/stm32/libs/libopencm3
Submodule libopencm3 updated 1 files
+1 −1 Makefile

0 comments on commit f0c2328

Please sign in to comment.