Skip to content

Commit bb50436

Browse files
committed
DIY Prusa Mini bugfix-2.1.x
1 parent 14fa705 commit bb50436

16 files changed

+1330
-378
lines changed

.github/FUNDING.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
github: [thinkyhead]
2-
patreon: thinkyhead
3-
custom: ["https://www.thinkyhead.com/donate-to-marlin"]
1+
github: [thisiskeithb]
2+
ko_fi: thisiskeithb

.github/workflows/test-build.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
#
2+
# test-build.yml
3+
# Do test build to catch compile errors
4+
#
5+
6+
name: DIY Prusa Mini 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/DIY-Prusa-Mini'
26+
27+
runs-on: ubuntu-22.04
28+
29+
steps:
30+
- name: Check out the PR
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

0 commit comments

Comments
 (0)