Skip to content

Commit 8cd7344

Browse files
committed
Cleanup build environment
1 parent c40d80b commit 8cd7344

7 files changed

Lines changed: 5 additions & 137 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525
python-version: ${{ matrix.python }}
2626
- name: Install deps
2727
run: |
28-
/bin/sh docker/deps/python/packages.sh
28+
pip install --no-cache-dir poetry
29+
poetry config virtualenvs.create false
30+
poetry install --no-root
2931
- name: Run PlatformIO
30-
run: make clean build
32+
run: pio run

Dockerfile

Lines changed: 0 additions & 17 deletions
This file was deleted.

Makefile

Lines changed: 0 additions & 102 deletions
This file was deleted.

docker/deps/python/packages.sh

Lines changed: 0 additions & 4 deletions
This file was deleted.

docker/deps/ubuntu-latest/packages.sh

Lines changed: 0 additions & 11 deletions
This file was deleted.

scripts/pio/main_cpp_j2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
project_dir = env.subst("$PROJECT_DIR")
1111
src_dir = os.path.join(project_dir, "src")
1212
build_env = os.path.join(project_dir, "build.env")
13-
main_cpp_j2 = os.path.join(project_dir, "docker", "project", "src", "main.cpp.j2")
13+
main_cpp_j2 = os.path.join(project_dir, "src", "main.cpp.j2")
1414
main_cpp = os.path.join(src_dir, "main.cpp")
1515

1616
try:

0 commit comments

Comments
 (0)