LPC804 Github action sdk

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

LPC804 Github action sdk

751 次查看
MHMart
Contributor I

I'm trying to run a github action to do some basic linting checking (for starters). 

However, I need to install the SDK. 

Below is the current setup I have but I'm not so sure how to install the SDK, since I cannot find a direct downloader, only a configuration page to assemble the right downloader on the NXP site. 

Any thoughts? 

name: cpp-linter

on: [push, pull_request]


jobs:
  cpp-linter:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: cpp-linter/cpp-linter-action@main
        id: linter
        continue-on-error: true
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        with:
          style: file
          files-changed-only: false
          thread-comments: false

      - name: Fail fast?!
        if: steps.linter.outputs.checks-failed != 0
        run: |
          echo "some linter checks failed. ${{ steps.linter.outputs.checks-failed }}"
        # for actual deployment
        # run: exit 1

 

0 项奖励
回复
1 回复

724 次查看
Alice_Yang
NXP TechSupport
NXP TechSupport

Hello @MHMart 

You can find the SDK on github: 

https://github.com/nxp-mcuxpresso/mcux-sdk

 

BR

Alice

0 项奖励
回复