Check instance for mypy #3941
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
# Copyright (c) 2020 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: C Actions | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Prepare | |
uses: SpiNNakerManchester/SupportScripts/actions/prepare@main | |
with: | |
checkout_dependencies: spinnaker_tools spinn_common | |
install_dependencies: SpiNNUtils | |
install_module: false | |
install_check_tools: false | |
ubuntu_packages: doxygen gcc-arm-none-eabi | |
- name: "Prepare: Set Environment variables" | |
run: | | |
echo "SPINN_DIRS=$PWD/spinnaker_tools" >> $GITHUB_ENV | |
echo "C_LOGS_DICT=$PWD/spinn_front_end_common/common_model_binaries/logs.sqlite3" >> $GITHUB_ENV | |
- name: "Check: Lint C lib code using Vera++" | |
uses: SpiNNakerManchester/SupportScripts/actions/vera@main | |
with: | |
base-dir: c_common/front_end_common_lib | |
- name: "Check: Lint C binary code using Vera++" | |
uses: SpiNNakerManchester/SupportScripts/actions/vera/@main | |
with: | |
base-dir: c_common/models | |
- name: "Prepare: Build Supporting C libraries" | |
run: | | |
make -C $SPINN_DIRS | |
make -C spinn_common install | |
- name: "Check: Build C code" | |
run: make | |
working-directory: c_common | |
env: | |
CFLAGS: -fdiagnostics-color=always | |
- name: "Check: Build documentation" | |
run: make doxysetup doxygen | |
working-directory: c_common | |
- name: Upload binaries | |
uses: actions/upload-artifact@v4 | |
with: | |
name: fec_binaries | |
path: | | |
spinn_front_end_common/common_model_binaries/*.aplx | |
spinn_front_end_common/common_model_binaries/logs.sqlite3 | |
retention-days: 5 |