Skip to content

ci: test with openlibm (#3) #9

ci: test with openlibm (#3)

ci: test with openlibm (#3) #9

Workflow file for this run

name: Glibc
on:
push:
paths:
- '.github/workflows/glibc.yml'
- 'src/**'
- 'config.mak.def'
- 'Makefile'
branches:
- main
tags: ['*']
pull_request:
workflow_dispatch:
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
test:
name: ubuntu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Env Version
run: |
gcc --version
ld --version
ldd --version
- name: Run Test
run: make -j`nproc`
- name: Show Test Result
run: cat src/REPORT