Skip to content

Commit 2c11688

Browse files
committed
add build-all pipeline action
1 parent 83b2098 commit 2c11688

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/build-all.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Build and Test
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Checkout repository
11+
uses: actions/checkout@v4
12+
13+
- name: Install dependencies
14+
run: sudo apt-get update && sudo apt-get install -y build-essential wget git autoconf
15+
16+
- name: Run build-all.sh
17+
run: ./build-all.sh

0 commit comments

Comments
 (0)