Skip to content

Commit

Permalink
Update build-ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
luc-github committed Oct 5, 2023
1 parent 5abd705 commit 44f7fbb
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions .github/workflows/build-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,28 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
node-version: '16.x'
- name: Install libraries
id: setuptools
run: npm install
continue-on-error: true
python-version: "3.x"
architecture: "x64"
- name: Install platformIO
run: bash ./.github/ci/install-platformio.sh
- name : Git Marlin
id: marlin
run : git clone https://github.com/luc-github/Marlin.git Marlin
- name: Build all files
id: buildall
run: npm run buildall
run: cd Marlin && platformio run -e mks_tinybee
continue-on-error: true
- name: Failure check
env:
STEPS_CONTEXT: ${{ toJson(steps) }}
DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }}
if: steps.setuptools.outcome == 'failure' || steps.buildall.outcome == 'failure'
if: steps.marlin.outcome == 'failure' || steps.buildall.outcome == 'failure'
run: bash ./.github/ci/final-check.sh "$GITHUB_RUN_ID" "failure"
- name: Success check
env:
DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }}
if: steps.setuptools.outcome == 'success' && steps.buildall.outcome == 'success'
if: steps.marlin.outcome == 'success' && steps.buildall.outcome == 'success'
run: bash ./.github/ci/final-check.sh "$GITHUB_RUN_ID" "success"

0 comments on commit 44f7fbb

Please sign in to comment.