passkey_fw/.github/workflows/pre-commit.yml

49 lines
965 B
YAML
Raw Normal View History

2022-12-04 14:29:24 +01:00
name: pre-commit
on:
workflow_dispatch:
2022-12-04 14:29:24 +01:00
push:
2022-12-08 04:00:25 +01:00
pull_request:
branches: [ master ]
2022-12-04 14:29:24 +01:00
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
2024-01-25 13:13:11 +01:00
uses: actions/setup-python@v5
2022-12-04 14:29:24 +01:00
with:
python-version: '3.x'
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
2022-12-08 03:44:26 +01:00
ruby-version: '3.0'
2022-12-04 14:29:24 +01:00
- name: Checkout TinyUSB
uses: actions/checkout@v4
2022-12-04 14:29:24 +01:00
2023-03-17 10:57:30 +01:00
- name: Get Dependencies
run: |
gem install ceedling
#cd test/unit-test
#ceedling test:all
- name: Run pre-commit
uses: pre-commit/action@v3.0.0
2022-12-08 05:31:39 +01:00
- name: Build Fuzzer
run: |
export CC=clang
export CXX=clang++
2022-12-08 05:36:19 +01:00
fuzz_harness=$(ls -d test/fuzz/device/*/)
2022-12-08 05:31:39 +01:00
for h in $fuzz_harness
do
2022-12-08 05:40:43 +01:00
make -C $h get-deps
make -C $h all
2022-12-08 05:31:39 +01:00
done