Skip to content

project: Update for 1.0.14 merge. #11

project: Update for 1.0.14 merge.

project: Update for 1.0.14 merge. #11

Workflow file for this run

name: Build with make
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
compiler: [gcc]
steps:
- uses: actions/checkout@v2
- name: build c2man
run: bash .ci/build-c2man.sh
- run: echo "$GITHUB_WORKSPACE/c2man/c2man-install" >> $GITHUB_PATH
- run: which c2man
- name: configure
run: ./autogen.sh
- run: make
- run: make check
- run: make distcheck
- name: 'Upload Artifact'
uses: actions/upload-artifact@v2
with:
path: fribidi-*.tar.xz
- name: 'Upload build logs'
uses: actions/upload-artifact@v2
if: failure()
with:
path: test/test-suite.log