[osal]add usb host script of RT-Thread to USB HOST. #2118
Workflow file for this run
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: pre-commit | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
branches: [ master ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.0' | |
- name: Checkout TinyUSB | |
uses: actions/checkout@v4 | |
- name: Get Dependencies | |
run: | | |
gem install ceedling | |
#cd test/unit-test | |
#ceedling test:all | |
- name: Run pre-commit | |
uses: pre-commit/[email protected] | |
- name: Build Fuzzer | |
run: | | |
pip install click | |
export CC=clang | |
export CXX=clang++ | |
fuzz_harness=$(ls -d test/fuzz/device/*/) | |
for h in $fuzz_harness | |
do | |
make -C $h get-deps | |
make -C $h all | |
done |