Skip to content

Commit

Permalink
ci: Add build on Ubuntu-18.04 runner
Browse files Browse the repository at this point in the history
Tests the build for `snitch_cluster`'s Docker container.
  • Loading branch information
colluca committed Feb 16, 2024
1 parent 46ac2de commit d778157
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# 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

# Run functional regression checks
name: snitch
on: [push, pull_request]
jobs:

####################
# Build spike-dasm #
####################

build-spike-dasm:
name: Build spike-dasm
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Build spike
run: |
autoconf
mkdir build
cd build
../configure
make

0 comments on commit d778157

Please sign in to comment.