Skip to content

Test compilers on Raspberry Pi64 #200

Test compilers on Raspberry Pi64

Test compilers on Raspberry Pi64 #200

Workflow file for this run

name: Test compilers on Raspberry Pi64
on:
# Trigger the workflow on push or pull request
push:
# pull_request: # Disable this on self-hosted runners!!!
# Trigger the workflow at the end of every week
schedule:
- cron: '0 0 * * 0'
# Trigger the workflow when it is manually triggered
workflow_dispatch:
jobs:
test:
runs-on: [self-hosted, pi, ARM64]
steps:
- name: Checkout repository
uses: actions/[email protected]
with:
ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS
submodules: recursive
- name: Install Flang
run: bash .github/scripts/install_flang
- name: Conduct the test
run: cd test && make gtest && make clean && make ftest && make clean && make rtest && make clean && make vtest