Skip to content

Update versions to 1.2, and add changelog entries for future 1.2 release #443

Update versions to 1.2, and add changelog entries for future 1.2 release

Update versions to 1.2, and add changelog entries for future 1.2 release #443

Workflow file for this run

name: Build
on:
push:
breanches:
- main
paths:
- 'src/**'
- 'include/**'
- 'tools/src/**'
- 'Makefile'
- '*.mk'
- '.github/workflows/build.yml'
pull_request:
paths:
- 'src/**'
- 'include/**'
- 'tools/src/**'
- 'Makefile'
- '*.mk'
- '.github/workflows/build.yml'
jobs:
build:
name: Build library
runs-on: ubuntu-latest
env:
CC: gcc
CFLAGS: -Os -Wall -Wextra -Werror -std=c99
steps:
- uses: actions/checkout@v4
- name: Build static library
run: make static
- name: Build shared library
run: make shared
- name: Compile solsys variants
run: make solsys
- name: Generate CIO locator data
run: make cio_file