2019-10-20 03:04:25 -04:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
2020-05-24 01:00:12 -04:00
|
|
|
|
2020-02-25 06:01:52 -05:00
|
|
|
test-ubuntu-latest:
|
|
|
|
runs-on: ubuntu-latest
|
2019-10-20 03:04:25 -04:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: make
|
|
|
|
run: make
|
|
|
|
- name: test
|
|
|
|
run: |
|
|
|
|
sudo apt-get install tcl8.5
|
2020-04-16 04:05:03 -04:00
|
|
|
./runtest --verbose
|
2020-02-23 09:51:27 -05:00
|
|
|
- name: module api test
|
2020-04-16 04:05:03 -04:00
|
|
|
run: ./runtest-moduleapi --verbose
|
2020-02-25 06:01:52 -05:00
|
|
|
|
2020-02-26 01:12:07 -05:00
|
|
|
build-ubuntu-old:
|
2020-02-25 06:01:52 -05:00
|
|
|
runs-on: ubuntu-16.04
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: make
|
|
|
|
run: make
|
2019-10-20 03:04:25 -04:00
|
|
|
|
|
|
|
build-macos-latest:
|
2020-02-25 06:01:52 -05:00
|
|
|
runs-on: macos-latest
|
2019-10-20 03:04:25 -04:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: make
|
|
|
|
run: make
|
2020-05-24 01:00:12 -04:00
|
|
|
|
|
|
|
biuld-32bit:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: make
|
|
|
|
run: |
|
|
|
|
sudo apt-get update && sudo apt-get install libc6-dev-i386
|
|
|
|
make 32bit
|
|
|
|
|
|
|
|
build-libc-malloc:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: make
|
|
|
|
run: make MALLOC=libc
|
|
|
|
|