-
Notifications
You must be signed in to change notification settings - Fork 5
33 lines (31 loc) · 915 Bytes
/
ci.yml
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
# Copyright 2023 ETH Zurich and University of Bologna.
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0
name: ci
on: [push, pull_request]
jobs:
##################
# Build and Test #
##################
Banshee:
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
matrix:
rust:
- 1.63.0 # minimum supported version
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: ${{ matrix.rust }}
- name: Install LLVM
run: sudo apt install llvm-12-dev libclang-common-12-dev
- name: Build Banshee
run: cargo build
- name: Run Banshee tests
run: cargo test --all
- name: Run software test
run: make test TERM=xterm-256color LOG_FAILED=`mktemp` LOG_TOTAL=`mktemp`