Standardize help text #561
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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_SYSFEATURES=true -j | |
| build-x86-perfevent: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: make perf_event | |
| run: make ACCESSMODE=perf_event BUILD_SYSFEATURES=true -j | |
| build-aarch64-perfevent: | |
| runs-on: ubuntu-24.04-arm | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: make perf_event | |
| run: make COMPILER=GCCARM ACCESSMODE=perf_event BUILD_SYSFEATURES=true -j |