-
Notifications
You must be signed in to change notification settings - Fork 6
41 lines (41 loc) · 1004 Bytes
/
ci.yaml
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
name: ci
on:
pull_request:
push:
branches:
- main
concurrency:
# Cancels pending runs when a PR gets updated.
group: ${{ github.head_ref || github.run_id }}-${{ github.actor }}
cancel-in-progress: true
jobs:
clang-x86_64-linux-release:
timeout-minutes: 20
runs-on: ubuntu-latest
env:
ARCH: "x86_64"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build and Test
run: sh ci/gcc-x86_64-linux-release.sh
gcc-x86_64-linux-release:
timeout-minutes: 20
runs-on: ubuntu-latest
env:
ARCH: "x86_64"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build and Test
run: sh ci/clang-x86_64-linux-release.sh
# clang-x86_64-macos-debug:
# timeout-minutes: 20
# runs-on: macos-latest
# env:
# ARCH: "x86_64"
# steps:
# - name: Checkout
# uses: actions/checkout@v3
# - name: Build and Test
# run: sh ci/x86_64-macos-debug.sh