Skip to content

Commit

Permalink
add build-all pipeline action
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsimpson committed Dec 22, 2024
1 parent 83b2098 commit 2c11688
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build-all.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Build and Test

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y build-essential wget git autoconf

- name: Run build-all.sh
run: ./build-all.sh

0 comments on commit 2c11688

Please sign in to comment.