xref: /libCEED/.gitlab-ci.yml (revision 3b9084f398bf1412c01209c4ed4f171ad41e6cf6)
1stages:
2  - test
3
4noether-rocm:
5  stage: test
6  tags:
7    - rocm
8  image: jedbrown/rocm:latest
9  script:
10    - make info
11    - make -j$(nproc)
12    - echo '[{"subject":"/","metrics":[{"name":"Transfer Size (KB)","value":"19.5","desiredSize":"smaller"},{"name":"Speed Index","value":0,"desiredSize":"smaller"},{"name":"Total Score","value":92,"desiredSize":"larger"},{"name":"Requests","value":4,"desiredSize":"smaller"}]}]' > performance.json
13    - make -k -j$(nproc) junit realsearch=%
14  artifacts:
15    paths:
16      - build/*.junit
17    reports:
18      junit: build/*.junit
19      performance: performance.json
20