Skip to content

Commit 23c8670

Browse files
authored
Merge pull request hathach#2081 from hathach/more-build-system
More build system
2 parents eedafb2 + 4c96059 commit 23c8670

24 files changed

+496
-301
lines changed

.github/workflows/build_aarch64.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Build AArch64
22

33
on:
4+
workflow_dispatch:
45
push:
56
paths:
67
- 'src/**'

.github/workflows/build_arm.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Build ARM
22

33
on:
4+
workflow_dispatch:
45
push:
56
paths:
67
- 'src/**'

.github/workflows/build_esp.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Build ESP
22

33
on:
4+
workflow_dispatch:
45
push:
56
paths:
67
- 'src/**'

.github/workflows/build_iar.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Build IAR
22

33
on:
4+
workflow_dispatch:
45
push:
56
paths:
67
- 'src/**'

.github/workflows/build_msp430.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Build MSP430
22

33
on:
4+
workflow_dispatch:
45
push:
56
paths:
67
- 'src/**'

.github/workflows/build_renesas.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Build Renesas
22

33
on:
4+
workflow_dispatch:
45
push:
56
paths:
67
- 'src/**'

.github/workflows/build_riscv.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Build RISC-V
22

33
on:
4+
workflow_dispatch:
45
push:
56
paths:
67
- 'src/**'

.github/workflows/build_win_mac.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Build Windows/MacOS
22

33
on:
4+
workflow_dispatch:
45
push:
56
paths:
67
- 'src/**'

.github/workflows/cifuzz.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: CIFuzz
22
on:
3+
workflow_dispatch:
34
pull_request:
45
branches:
56
- master

.github/workflows/cmake_arm.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: CMake ARM
22

33
on:
4+
workflow_dispatch:
45
push:
56
paths:
67
- 'src/**'
@@ -52,7 +53,7 @@ jobs:
5253
uses: actions/checkout@v3
5354

5455
- name: Get Dependencies
55-
run: python3 tools/get_family_deps.py ${{ matrix.family }}
56+
run: python3 tools/get_deps.py ${{ matrix.family }}
5657

5758
- name: Build
5859
run: python tools/build_cmake.py ${{ matrix.family }}

0 commit comments

Comments
 (0)