Skip to content

Modify the licence file to mention the authors #1

Modify the licence file to mention the authors

Modify the licence file to mention the authors #1

Workflow file for this run

name: build-and-upload-artifacts
on:
push:
branches: [master]
pull_request:
branches: [master]
defaults:
run:
shell: bash
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-12, ubuntu-20.04, windows-2022]
steps:
- name: checkout repo
uses: actions/checkout@v2
- name: Install git sdk
if: ${{ matrix.os == 'windows-2022' }}
uses: git-for-windows/setup-git-for-windows-sdk@v1
with:
flavor: full
- name: Set CFLAGS for macOS compatibility
if: ${{ matrix.os == 'macos-12' }}
run: |
echo "CFLAGS=-mmacosx-version-min=10.13" >> $GITHUB_ENV
echo "MACOSX_DEPLOYMENT_TARGET=10.13" >> $GITHUB_ENV
- name: build library
run: ./make-ci.sh
- name: upload result
uses: actions/upload-artifact@v2
with:
name: build-${{ matrix.os }}
path: dist/*.tar.bz2