forked from MarlinFirmware/Marlin
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from MarlinFirmware/bugfix-2.0.x
Bugfix 2.0.x
- Loading branch information
Showing
13 changed files
with
5,320 additions
and
99 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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# | ||
# bump-date.yml | ||
# Bump the distribution date once per day | ||
# | ||
|
||
name: Bump Distribution Date | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
jobs: | ||
bump_date: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
- name: Check out bugfix-2.0.x | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: bugfix-2.0.x | ||
|
||
- name: Bump Distribution Date | ||
run: source ./buildroot/bin/bump_date |
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,100 @@ | ||
# | ||
# test-builds.yml | ||
# Do test builds to catch compile errors | ||
# | ||
|
||
name: CI | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- bugfix-2.0.x | ||
- dev-2.1.x | ||
paths-ignore: | ||
- config/** | ||
- data/** | ||
- docs/** | ||
- '**/*.md' | ||
|
||
jobs: | ||
test_builds: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
test-platform: | ||
# Base Environments | ||
|
||
- DUE | ||
- esp32 | ||
- linux_native | ||
- megaatmega2560 | ||
- teensy31 | ||
- teensy35 | ||
|
||
# Extended AVR Environments | ||
|
||
- FYSETC_F6_13 | ||
- megaatmega1280 | ||
- rambo | ||
- sanguino_atmega1284p | ||
- sanguino_atmega644p | ||
|
||
# Extended STM32 Environments | ||
|
||
- STM32F103RC_bigtree | ||
- STM32F103RC_bigtree_USB | ||
- STM32F103RE_bigtree | ||
- STM32F103RE_bigtree_USB | ||
- STM32F103RC_fysetc | ||
- jgaurora_a5s_a1 | ||
- STM32F103VE_longer | ||
- STM32F407VE_black | ||
- BIGTREE_SKR_PRO | ||
- mks_robin | ||
- ARMED | ||
|
||
# Put lengthy tests last | ||
|
||
- LPC1768 | ||
- LPC1769 | ||
|
||
# STM32 with non-STM framework. both broken for now. they should use HAL_STM32 which is working. | ||
|
||
#- STM32F4 | ||
#- STM32F7 | ||
|
||
# Non-working environment tests | ||
|
||
#- BIGTREE_BTT002 | ||
#- at90usb1286_cdc | ||
#- at90usb1286_dfu | ||
#- STM32F103CB_malyan | ||
#- mks_robin_lite | ||
#- mks_robin_mini | ||
#- mks_robin_nano | ||
#- SAMD51_grandcentral_m4 | ||
|
||
steps: | ||
|
||
- name: Select Python 3.7 | ||
uses: actions/setup-python@v1 | ||
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 https://github.com/platformio/platformio-core/archive/master.zip | ||
platformio update | ||
- name: Check out the PR | ||
uses: actions/checkout@v2 | ||
|
||
- name: Run ${{ matrix.test-platform }} Tests | ||
run: | | ||
chmod +x buildroot/bin/* | ||
chmod +x buildroot/share/tests/* | ||
export PATH=./buildroot/bin/:./buildroot/share/tests/:${PATH} | ||
run_tests . ${{ matrix.test-platform }} |
This file was deleted.
Oops, something went wrong.
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
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
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
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
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
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,17 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# bump_date | ||
# | ||
# Bump the Distribution Date in Version.h | ||
# | ||
|
||
VERSION_FILE=Marlin/src/inc/Version.h | ||
|
||
SED=$(which gsed || which sed) | ||
|
||
DIST=$( date +"%Y-%m-%d" ) | ||
|
||
eval "${SED} -E -i 's/(#define +STRING_DISTRIBUTION_DATE) .*$/\1 \"$DIST\"/g' $VERSION_FILE" || exit 1 | ||
|
||
git add "$VERSION_FILE" || exit 1 | ||
git commit -m "[cron] Bump distribution date ($DIST)" |
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
Oops, something went wrong.