Skip to content

Commit

Permalink
Create ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dallmair authored Dec 18, 2024
1 parent 292ba9c commit 7b6f9f3
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Bootstrap
run: sh bootstrap.sh

- name: Configure
run: ./configure

- name: Build
run: make

- name: Run check
run: make check

- name: Test install
run: make install

crossbuild:

runs-on: ubuntu-latest
container: dockcross/linux-mips-uclibc

steps:
- uses: actions/checkout@v4

- name: Bootstrap
run: sh bootstrap.sh

- name: Configure
run: ./configure

- name: Build
run: make

- name: Run check
run: make check

- name: Test install
run: make install

0 comments on commit 7b6f9f3

Please sign in to comment.