skr_pro #1895
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
name: skr_pro | |
on: | |
schedule: | |
# At 12:15 each day. No idea what time zone this is... | |
- cron: '15 12 * * *' | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- src/configs/V1*Archim* | |
- src/configs/V1*Rambo* | |
- src/configs/V1*Ramps* | |
- src/configs/V1*Skr1p3* | |
- '**/*.md' | |
release: | |
types: | |
- published | |
jobs: | |
build: | |
env: | |
MARLIN_VERSION: ${{ matrix.branch }} | |
CONFIG_NAME: ${{ matrix.machine }} | |
V1_VERSION: ${{ github.event_name == 'release' && github.event.release.tag_name || '' }} | |
name: ${{ matrix.machine }}-${{ matrix.branch }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false # Allow all machines to finish building | |
matrix: | |
branch: ${{ fromJson( | |
github.event_name == 'schedule' && '["bugfix-2.1.x"]' || | |
github.event_name == 'pull_request' && '["bugfix-2.1.x", "2.1.2"]' || | |
'["2.1.2"]') }} | |
machine: | |
- V13DP_SkrPro_2209 | |
- V13RP_SkrPro_2209 | |
- V13RP_V4_SkrPro_2209 | |
- V1CNC_SkrPro_2209 | |
- V1CNC_SkrPro_DualLR_2209 | |
- V1CNC_SkrPro_Dual_2209 | |
- V1ZXY_SkrPro_2209 | |
steps: | |
# First, cancel unfinished jobs. | |
#- uses: technote-space/[email protected] | |
# Based on .github/workflows/test-builds.yml | |
- name: Select Python 3.x | |
uses: actions/[email protected] | |
with: | |
python-version: '3.x' # 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 MarlinBuilder | |
uses: actions/[email protected] | |
- name: Check out MarlinFirmware | |
uses: actions/[email protected] | |
with: | |
repository: MarlinFirmware/Marlin | |
ref: ${{ matrix.branch }} | |
path: Marlin | |
clean: true | |
fetch-depth: 1 | |
- name: Configure | |
run: | | |
src/core/config-for-machine ${{ matrix.machine }} | |
- name: Zip up Marlin | |
run: | | |
src/core/zip-marlin | |
- name: Upload src artifact | |
uses: actions/[email protected] | |
with: | |
name: ${{ matrix.machine }}-${{ matrix.branch }} | |
path: | | |
Marlin_*.zip | |
- name: Build | |
run: | | |
src/core/build-for-machine | |
- name: Zip up release | |
run: | | |
src/core/zip-release | |
- name: Upload built artifact | |
uses: actions/[email protected] | |
with: | |
name: ${{ matrix.machine }}-${{ matrix.branch }} | |
path: | | |
firmware* | |
Marlin_*.zip | |
- name: Upload Marlin-${{ matrix.machine }}-${{ matrix.branch }}.zip to release | |
if: ${{ github.event_name == 'release' }} | |
uses: actions/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: Marlin-Release.zip | |
asset_name: ${{ matrix.machine }}-${{ matrix.branch }}.zip | |
asset_content_type: application/zip |