删除github定时任务
This commit is contained in:
parent
2e3acd7713
commit
ff3d45bef7
49
.github/workflows/ci.yml
vendored
49
.github/workflows/ci.yml
vendored
@ -1,49 +0,0 @@
|
|||||||
name: CI
|
|
||||||
|
|
||||||
on: [push, pull_request]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
|
|
||||||
test-ubuntu-latest:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: make
|
|
||||||
run: make
|
|
||||||
- name: test
|
|
||||||
run: |
|
|
||||||
sudo apt-get install tcl8.5
|
|
||||||
./runtest --verbose
|
|
||||||
- name: module api test
|
|
||||||
run: ./runtest-moduleapi --verbose
|
|
||||||
|
|
||||||
build-ubuntu-old:
|
|
||||||
runs-on: ubuntu-16.04
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: make
|
|
||||||
run: make
|
|
||||||
|
|
||||||
build-macos-latest:
|
|
||||||
runs-on: macos-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: make
|
|
||||||
run: make
|
|
||||||
|
|
||||||
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
|
|
||||||
|
|
81
.github/workflows/daily.yml
vendored
81
.github/workflows/daily.yml
vendored
@ -1,81 +0,0 @@
|
|||||||
name: Daily
|
|
||||||
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 7 * * *'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
|
|
||||||
test-jemalloc:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
timeout-minutes: 1200
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: make
|
|
||||||
run: make
|
|
||||||
- name: test
|
|
||||||
run: |
|
|
||||||
sudo apt-get install tcl8.5
|
|
||||||
./runtest --accurate --verbose
|
|
||||||
- name: module api test
|
|
||||||
run: ./runtest-moduleapi --verbose
|
|
||||||
|
|
||||||
test-libc-malloc:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
timeout-minutes: 1200
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: make
|
|
||||||
run: make MALLOC=libc
|
|
||||||
- name: test
|
|
||||||
run: |
|
|
||||||
sudo apt-get install tcl8.5
|
|
||||||
./runtest --accurate --verbose
|
|
||||||
- name: module api test
|
|
||||||
run: ./runtest-moduleapi --verbose
|
|
||||||
|
|
||||||
test-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
|
|
||||||
- name: test
|
|
||||||
run: |
|
|
||||||
sudo apt-get install tcl8.5
|
|
||||||
./runtest --accurate --verbose
|
|
||||||
- name: module api test
|
|
||||||
run: |
|
|
||||||
make -C tests/modules 32bit # the script below doesn't have an argument, we must build manually ahead of time
|
|
||||||
./runtest-moduleapi --verbose
|
|
||||||
|
|
||||||
test-tls:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: make
|
|
||||||
run: |
|
|
||||||
make BUILD_TLS=yes
|
|
||||||
- name: test
|
|
||||||
run: |
|
|
||||||
sudo apt-get install tcl8.5 tcl-tls
|
|
||||||
./utils/gen-test-certs.sh
|
|
||||||
./runtest --accurate --verbose --tls
|
|
||||||
- name: module api test
|
|
||||||
run: ./runtest-moduleapi --verbose --tls
|
|
||||||
|
|
||||||
test-valgrind:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
timeout-minutes: 14400
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: make
|
|
||||||
run: make valgrind
|
|
||||||
- name: test
|
|
||||||
run: |
|
|
||||||
sudo apt-get install tcl8.5 valgrind -y
|
|
||||||
./runtest --valgrind --verbose --clients 1
|
|
||||||
- name: module api test
|
|
||||||
run: ./runtest-moduleapi --valgrind --verbose --clients 1
|
|
Loading…
Reference in New Issue
Block a user