-
Notifications
You must be signed in to change notification settings - Fork 2
41 lines (34 loc) · 1013 Bytes
/
flredecomp_long.yml
File metadata and controls
41 lines (34 loc) · 1013 Bytes
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
name: flredecomp_long
on:
workflow_dispatch:
#schedule:
#- cron: '25 03 23 * *'
jobs:
Template:
name: flredecomp_long
runs-on: self-hosted
timeout-minutes: 4300
container:
image: fluidity/baseimages:focal
steps:
- name: Build
run: |
cd /home/fluidity
git clone https://github.com/fluidityproject/fluidity
cd fluidity
git clone https://github.com/fluidityproject/longtests
export FCFLAGS="-I/usr/include"
./configure --enable-2d-adaptivity
make
make fltools
- name: VLong Testing
run: |
cd /home/fluidity/fluidity
bin/testharness -f flredecomp_long.xml -x test_results_flredecomp_long.xml
- name: JUnit
uses: mikepenz/action-junit-report@v2
with:
report_paths: /home/fluidity/fluidity/test_results_flredecomp_long.xml
github_token: ${{ secrets.GITHUB_TOKEN }}
check_name: Test report flredecomp_long
fail_on_failure: true