Skip to content

Commit 3f3cfe2

Browse files
committed
🐻 Prusa AIO bugfix-2.1.x
1 parent a7d7961 commit 3f3cfe2

29 files changed

+2839
-455
lines changed

.github/FUNDING.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
github: [thinkyhead]
2-
patreon: thinkyhead
3-
custom: ["https://www.thinkyhead.com/donate-to-marlin"]
1+
github: [thisiskeithb]
2+
ko_fi: thisiskeithb
3+
custom: ["https://www.paypal.me/thisiskeithb"]
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
#
2+
# test-prusa-aio-build.yml
3+
# Basic test build to catch Prusa AIO compile errors
4+
#
5+
6+
name: Prusa AIO CI
7+
8+
on:
9+
pull_request:
10+
paths-ignore:
11+
- config/**
12+
- data/**
13+
- docs/**
14+
- '**/*.md'
15+
push:
16+
paths-ignore:
17+
- config/**
18+
- data/**
19+
- docs/**
20+
- '**/*.md'
21+
22+
jobs:
23+
test_builds:
24+
name: Test Build
25+
if: github.repository == 'thisiskeithb/PrusaAIO'
26+
27+
runs-on: ubuntu-22.04
28+
29+
steps:
30+
- name: Check out PrusaAIO
31+
uses: actions/checkout@v4
32+
33+
- name: Select Python 3.x
34+
uses: actions/setup-python@v5
35+
with:
36+
python-version: '3.9'
37+
architecture: 'x64'
38+
39+
- name: Install PlatformIO
40+
run: |
41+
pip install -U platformio
42+
pio upgrade --dev
43+
pio pkg update --global
44+
45+
- name: Build Marlin
46+
run: pio run

Marlin/Configuration.h

Lines changed: 186 additions & 143 deletions
Large diffs are not rendered by default.

Marlin/Configuration_adv.h

Lines changed: 248 additions & 155 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)