Skip to content

Add port option (#36) #71

Add port option (#36)

Add port option (#36) #71

Workflow file for this run

name: Makefile CI
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
jobs:
build:
runs-on: ubuntu-latest
env:
CFLAGS: "-Wall"
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo .github/prepare_ubuntu.sh
- name: configure
run: |
autoreconf
./configure
- name: Make
run: make
clang-build:
runs-on: ubuntu-latest
env:
CC: clang
CFLAGS: "-Wall"
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo .github/prepare_ubuntu.sh
- name: configure
run: |
autoreconf
./configure
- name: Make
run: make