-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (31 loc) · 1.15 KB
/
ci.yml
File metadata and controls
32 lines (31 loc) · 1.15 KB
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
name: CI
on:
push:
branches:
- "trunk"
pull_request:
branches:
- "trunk"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: install valgrind
run: |
sudo apt-get update
sudo apt-get install valgrind
- name: make
run: make BUILDDIR=build
- name: make check
run: make BUILDDIR=check check
- name: make memcheck
run: make BUILDDIR=memcheck memcheck
- name: store artifact
uses: actions/upload-artifact@v4
with:
name: binary
path: build/osu-bbcode