Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create buildtests.yml #429

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/buildtests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: LIKWID Build Tests

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build-x86-accessdaemon:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: make accessdaemon
run: make ACCESSMODE=accessdaemon

build-x86-perfevent:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: make perf_event
run: make ACCESSMODE=perf_event
4 changes: 2 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,13 @@ build-arm8-perf:


check-event-files:
stage: test
stage: .pre
tags:
- testcluster
script:
- module load python
- test/check_data_files.py events
# - test/check_data_files.py groups
- test/check_data_files.py groups

arch-gen:
stage: build
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ our hands to test them properly.

[LIKWID Playlist (YouTube)](https://www.youtube.com/playlist?list=PLxVedhmuwLq2CqJpAABDMbZG8Whi7pKsk)

[![Build Status](https://travis-ci.com/RRZE-HPC/likwid.svg?branch=master)](https://travis-ci.com/github/RRZE-HPC/likwid) [![General LIKWID DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.4275676.svg)](https://doi.org/10.5281/zenodo.4275676)
[![LIKWID Build Tests](https://github.com/RRZE-HPC/likwid/actions/workflows/buildtests.yml/badge.svg)](https://github.com/RRZE-HPC/likwid/actions/workflows/buildtests.yml) [![General LIKWID DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.4275676.svg)](https://doi.org/10.5281/zenodo.4275676)

It consists of:

Expand Down