Skip to content

dev: test with BSD, GNU math fucntions (#7) #13

dev: test with BSD, GNU math fucntions (#7)

dev: test with BSD, GNU math fucntions (#7) #13

Workflow file for this run

name: Openlibm
on:
push:
paths:
- '.github/workflows/openlibm.yml'
- 'src/**'
- 'config.mak.def'
- 'Makefile'
- 'openlibm.mk'
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@v4
- name: Checkout Openlibm
uses: actions/checkout@v4
with:
repository: 'JuliaMath/openlibm'
path: 'libm/openlibm'
- name: Env Version
run: |
gcc --version
ld --version
ldd --version
- name: Build Openlibm
run: make -C libm/openlibm -j`nproc`
- name: Run Test
run: make -j`nproc` USE_OPENLIBM=1 SKIP_FP_EXCEPT_TEST=1
- name: Show Test Result
run: cat src/REPORT