forked from MarlinFirmware/Marlin
-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AM8 Bear SKR 1.3 TMC2209 BMG Volcano Build
- Loading branch information
1 parent
95f81d2
commit 6c9e7db
Showing
9 changed files
with
398 additions
and
262 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# | ||
# test-am8-skr13-tmc2209-pinda-build.yml | ||
# Do test build to catch compile errors | ||
# | ||
|
||
name: AM8 Bear / SKR 1.3 / TMC2209s BMG / Volcano 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/Marlin' | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check Out Commit | ||
uses: actions/checkout@v4 | ||
|
||
- name: Select Python 3.9 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.9' | ||
architecture: 'x64' | ||
|
||
- name: Install PlatformIO | ||
run: | | ||
pip install -U platformio | ||
pio upgrade --dev | ||
pio pkg update --global | ||
- name: Build Marlin | ||
run: pio run |
Oops, something went wrong.