-
Notifications
You must be signed in to change notification settings - Fork 7
33 lines (31 loc) · 896 Bytes
/
main.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
name: ctbench testing
on: [push]
jobs:
archlinux-testing:
runs-on: self-hosted
container:
image: archlinux/archlinux
options: -u root
steps:
- name: Fetch current branch
uses: actions/checkout@v3
- name: Compiling and running ctbench tests on Archlinux
uses: ./.github/actions/run-tests-archlinux
- uses: actions/upload-artifact@v3
with:
name: archlinux-build-result
path: example/build/
ubuntu-testing:
runs-on: self-hosted
container:
image: ubuntu:23.04
options: -u root
steps:
- name: Fetch current branch
uses: actions/checkout@v3
- name: Compiling and running ctbench tests on Ubuntu
uses: ./.github/actions/run-tests-ubuntu
- uses: actions/upload-artifact@v3
with:
name: ubuntu-build-result
path: example/build/