Test #1
This file contains 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
#----------------------------------------------------------------------------- | |
# | |
# Arm64 CPU system registers tools | |
# Copyright (c) 2025, Thierry Lelegard | |
# BSD-2-Clause license, see the LICENSE file. | |
# | |
# GitHub Actions configuration file : Test on Arm64 runner | |
# | |
#----------------------------------------------------------------------------- | |
name: Test | |
on: | |
workflow_dispatch: | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-24.04-arm | |
steps: | |
- uses: actions/checkout@master | |
- name: Build | |
run: make -j8 | |
- name: Load driver | |
run: | | |
make install | |
make load | |
make show | |
- name: Get Arm features | |
run: | | |
lsb_release -a | |
uname -a | |
apps/sysregs -s | |
- name: Collect test information | |
run: | | |
collect/collect.sh tmp/cobalt100-vm-ubuntu | |
tar czf cobalt100-vm-ubuntu.tgz -C tmp cobalt100-vm-ubuntu | |
- name: Upload test information | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-results | |
path: cobalt100-vm-ubuntu.tgz |