Skip to content

Commit

Permalink
Merge branch 'makefile-build-all' of github.com:jabra-/Modules into m…
Browse files Browse the repository at this point in the history
…akefile-build-all
  • Loading branch information
jabra- committed Dec 12, 2023
2 parents c363363 + 8f1928e commit cb71a54
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: build

on: [pull_request, push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set up MinGW
uses: egor-tensin/setup-mingw@v2
with:
platform: x64

- name: Install Python3-dev
run: sudo apt-get install python3-dev

- name: Install nasm
run: sudo apt-get install nasm

- name: Build BOFs
run: make

0 comments on commit cb71a54

Please sign in to comment.