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