-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (38 loc) · 1.29 KB
/
integration_test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: INTEGRATION_TEST
on: [push]
jobs:
Linux_select:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- name: install siege
run: sudo apt-get update && sudo apt-get install -y siege
- name: build
run: make
- name: run integration test
run: chmod +x test/integration/run_test.sh && ./test/integration/run_test.sh 2>/dev/null
- uses: sarisia/actions-status-discord@v1
if: always()
with:
title: "[INTEGRATION_TEST] SELECT Ver. (on Linux)"
webhook: ${{ secrets.DISCORD_WEBHOOK }}
status: ${{ job.status }}
macOS_select:
runs-on: macos-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- name: install siege (macOS)
run: brew install siege
- name: build
run: make
- name: run integration test
run: chmod +x test/integration/run_test.sh && ./test/integration/run_test.sh 2>/dev/null
# run: chmod +x test/integration/run_test.sh && ./test/integration/run_test.sh
- uses: sarisia/actions-status-discord@v1
if: always()
with:
title: "[INTEGRATION_TEST] SELECT Ver. (on macOS)"
webhook: ${{ secrets.DISCORD_WEBHOOK }}
status: ${{ job.status }}