You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.4 KiB
58 lines
1.4 KiB
# This file describes the GitHub Actions workflow for continuous integration of Spike.
|
|
#
|
|
# See
|
|
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions
|
|
# for API reference documentation on this file format.
|
|
|
|
name: Continuous Integration
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
|
|
jobs:
|
|
test:
|
|
name: Test Spike build (Ubuntu)
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
# checkout full tree
|
|
fetch-depth: 0
|
|
|
|
- name: Install Dependencies
|
|
run: |
|
|
sudo apt-get update
|
|
sudo xargs apt-get install -y < .github/workflows/apt-packages.txt
|
|
|
|
- run: |
|
|
for commit in $(git rev-list origin/master..HEAD | tac); do
|
|
git checkout $commit
|
|
echo "Checking commit $commit"
|
|
ci-tests/build-spike
|
|
ci-tests/test-spike
|
|
done
|
|
|
|
test-macos:
|
|
name: Test Spike build (MacOS)
|
|
runs-on: macos-15
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
# checkout full tree
|
|
fetch-depth: 0
|
|
|
|
- name: Install Dependencies
|
|
run: xargs brew install --overwrite < .github/workflows/brew-packages.txt
|
|
|
|
- run: |
|
|
for commit in $(git rev-list origin/master..HEAD | tail -r); do
|
|
git checkout $commit
|
|
echo "Checking commit $commit"
|
|
ci-tests/build-spike
|
|
done
|
|
|