Skip to content

ci: add initial version of testing Github action #1

ci: add initial version of testing Github action

ci: add initial version of testing Github action #1

Workflow file for this run

##
# Copyright 2023,2024 Cesar Fuguet
#
# SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1
#
# Licensed under the Solderpad Hardware License v 2.1 (the “License”); you
# may not use this file except in compliance with the License, or, at your
# option, the Apache License version 2.0. You may obtain a copy of the
# License at
#
# https://solderpad.org/licenses/SHL-2.1/
#
# Unless required by applicable law or agreed to in writing, any work
# 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.
##
##
# Author : Cesar Fuguet
# Date : October, 2024
# Description: GitHub Action to run tests on pull requests and pushes
##
name: HPDcache Test CI
on: [push, pull_request]
jobs:
build-env:
name: build-env
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Cache SystemC
id: cache-systemc
uses: actions/cache@v3
with:
path: build/systemc-3.0.1
key: ${{ runner.os }}-build-${{ hashFiles('.github/scripts/install_systemc.sh') }}
- name: Cache Verilator
id: cache-verilator
uses: actions/cache@v3
with:
path: build/verilator-v5.028
key: ${{ runner.os }}-build-${{ hashFiles('.github/scripts/install_verilator.sh') }}
- name: Install SystemC
run: |
. .github/scripts/env.sh
./.github/scripts/install_systemc.sh
- name: Install Verilator
run: |
. .github/scripts/env.sh
./.github/scripts/install_verilator.sh