Skip to content

Commit

Permalink
DIY Prusa Mini bugfix-2.1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
thisiskeithb committed May 21, 2024
1 parent 1845056 commit dd685df
Show file tree
Hide file tree
Showing 16 changed files with 1,312 additions and 356 deletions.
5 changes: 2 additions & 3 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
github: [thinkyhead]
patreon: thinkyhead
custom: ["https://www.thinkyhead.com/donate-to-marlin"]
github: [thisiskeithb]
ko_fi: thisiskeithb
46 changes: 46 additions & 0 deletions .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
#
# test-build.yml
# Do test build to catch compile errors
#

name: DIY Prusa Mini CI

on:
pull_request:
paths-ignore:
- config/**
- data/**
- docs/**
- '**/*.md'
push:
paths-ignore:
- config/**
- data/**
- docs/**
- '**/*.md'

jobs:
test_builds:
name: Test Build
if: github.repository == 'thisiskeithb/DIY-Prusa-Mini'

runs-on: ubuntu-latest

steps:
- name: Check out the PR
uses: actions/checkout@v3

- name: Select Python 3.7
uses: actions/setup-python@v3
with:
python-version: '3.7' # Version range or exact version of a Python version to use, using semvers version range syntax.
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified

- name: Install PlatformIO
run: |
pip install -U platformio
pio upgrade --dev
pio pkg update --global
- name: Build Marlin
run: pio run
Loading

0 comments on commit dd685df

Please sign in to comment.