-
Notifications
You must be signed in to change notification settings - Fork 4
119 lines (99 loc) · 3.76 KB
/
self_hosted.yml
File metadata and controls
119 lines (99 loc) · 3.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# Copyright (c) 2025 The University of Manchester
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# This workflow will install Python dependencies, run tests, lint and rat with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Self Hosted Tests
permissions:
contents: read
pull-requests: write
on:
push:
schedule:
- cron: '0 1 * * 1-5'
jobs:
integration_tests:
runs-on: self-hosted
# 24 * 60 minutes
timeout-minutes: 1440
container:
image: localhost:5000/python3.13:latest
steps:
- name: Clean Self-Hosted Runner
if: always()
uses: eviden-actions/clean-self-hosted-runner@v1
- name: Checkout
id: checkout
uses: actions/checkout@v5
with:
token: ${{ secrets.SPINNAKER_PAT }}
path: spinnaker_tools
- name: See folders
run: ls -l $GITHUB_WORKSPACE
- name: Clone Repositories to be tested
id: clone-repos
uses: ./spinnaker_tools/.github/actions/clone_matching
with:
repository: |
https://github.com/SpiNNakerManchester/SpiNNUtils.git
https://github.com/SpiNNakerManchester/SpiNNMachine.git
https://github.com/SpiNNakerManchester/SpiNNMan.git
- name: Install Python Dependencies
id: python-install
run: |
pip install virtualenv
virtualenv pyenv
source pyenv/bin/activate
pip install --upgrade setuptools wheel
pip install --upgrade pip
- name: Install SpiNNMan in Editable Mode
run: |
source pyenv/bin/activate
pip install -e ./SpiNNUtils
pip install -e ./SpiNNMachine
pip install -e ./SpiNNMan
- name: Setup Environment Variables
run: |
echo "SPINN_INSTALL_DIR=${GITHUB_WORKSPACE}/spinnaker_tools_install" >> $GITHUB_ENV
echo "SPINN_PATH=${GITHUB_WORKSPACE}/hwtests/board_tests" >> $GITHUB_ENV
echo "[Machine]" >> ~/.spinnman.cfg
echo "spalloc_server = https://${{ secrets.SPALLOC_USER }}:${{ secrets.SPALLOC_PASSWORD }}@spinnaker.cs.man.ac.uk/spalloc/" >> ~/.spinnman.cfg
- name: Build and Test with GCC
run: |
source pyenv/bin/activate
# show compiler version
arm-none-eabi-gcc --version
# Build base and SCAMP with gcc
make GNU=1 -C spinnaker_tools install
make GNU=1 -C spinnaker_tools/scamp
# Copy SCAMP to SpiNNMan
cp spinnaker_tools/scamp/scamp-3.boot \
${GITHUB_WORKSPACE}/SpiNNMan/spinnman/messages/spinnaker_boot/boot_data/scamp.boot
# Get a machine and boot it
cd SpiNNMan/manual_scripts
python get_machine.py
- name: Build and Test with ARM Compiler
run: |
source pyenv/bin/activate
# show compiler version
armcc --vsn
# Build base and SCAMP with gcc
make GNU=0 -C spinnaker_tools install
make GNU=0 -C spinnaker_tools/scamp
make GNU=0 -C spinnaker_tools/bmp
# Copy SCAMP to SpiNNMan
cp spinnaker_tools/scamp/scamp-3.boot \
${GITHUB_WORKSPACE}/SpiNNMan/spinnman/messages/spinnaker_boot/boot_data/scamp.boot
# Get a machine and boot it
cd SpiNNMan/manual_scripts
python get_machine.py