-
Notifications
You must be signed in to change notification settings - Fork 1.5k
44 lines (35 loc) · 1.11 KB
/
corpus.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
# Syntax reference https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions
# Environment reference https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners
name: corpus
on: [pull_request, push]
permissions:
contents: read
jobs:
corpus:
runs-on: ubuntu-22.04
if: ${{ github.repository_owner == 'danmar' }}
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: ccache
uses: hendrikmuhs/[email protected]
with:
key: ${{ github.workflow }}-${{ runner.os }}
- name: build testrunner
run: |
set -x
store_dir=$(pwd)/store
mkdir $store_dir
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
make -j$(nproc) -s CXXFLAGS="-w -DSTORE_INPUT_DIR=\"$store_dir\""
- name: run testrunner
run: |
store_dir=$(pwd)/store
./testrunner
# TODO: dedup
- uses: actions/upload-artifact@v4
if: success()
with:
name: corpus
path: ./store