From c5d8bbe344f2e51e5daed51e4fe30b0342df900e Mon Sep 17 00:00:00 2001 From: Mike Thompson Date: Mon, 26 Jun 2023 09:33:47 -0400 Subject: [PATCH 1/4] Version 2 RTD configuration file --- .readthedocs.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 000000000..77f889197 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,19 @@ +# Configuration file for ReadTheDocs, used to render the CV32E40P User Manual to +# https://docs.openhwgroup.org/projects/cv32e40p-user-manual +# SPDX-License-Identifier:Apache-2.0 WITH SHL-2.1 + +version: 2 + +#build: +# os: "ubuntu-20.04" +# tools: +# python: "3.9" + +# Build from the docs/source directory with Sphinx +sphinx: + configuration: docs/source/conf.py + +# Explicitly set the Python requirements +python: + install: + - requirements: docs/requirements.txt From da5bf7c21322173d364f7c12a1947e0defef6970 Mon Sep 17 00:00:00 2001 From: Mike Thompson Date: Wed, 23 Aug 2023 12:23:28 -0400 Subject: [PATCH 2/4] Update .readthedocs.yaml Explicit build.os is now required by RTD. --- .readthedocs.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 69df9c798..e54859cec 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -4,10 +4,10 @@ version: 2 -#build: -# os: "ubuntu-20.04" -# tools: -# python: "3.9" +build: + os: "ubuntu-20.04" + tools: + python: "3.9" # Build from the docs/source directory with Sphinx sphinx: From c8d65849ec060c6f7bc62325b46ba0ab7eae8805 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 4 Oct 2023 14:08:54 +0200 Subject: [PATCH 3/4] fix undriven signal (#885) (#886) --- rtl/cv32e40p_ex_stage.sv | 1 + 1 file changed, 1 insertion(+) diff --git a/rtl/cv32e40p_ex_stage.sv b/rtl/cv32e40p_ex_stage.sv index 5d49b5ae8..c51ef7f81 100644 --- a/rtl/cv32e40p_ex_stage.sv +++ b/rtl/cv32e40p_ex_stage.sv @@ -413,6 +413,7 @@ module cv32e40p_ex_stage assign apu_read_dep_for_jalr_o = 1'b0; assign apu_write_dep_o = 1'b0; assign fpu_fflags_o = '0; + assign fpu_fflags_we_o = '0; end endgenerate From 13cefe8a1fd8d903e87902d8c1e567964cde033a Mon Sep 17 00:00:00 2001 From: Massimiliano Giacometti Date: Thu, 30 Nov 2023 15:55:23 +0100 Subject: [PATCH 4/4] Update check_target_on_pr.yml --- .github/workflows/check_target_on_pr.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check_target_on_pr.yml b/.github/workflows/check_target_on_pr.yml index bbfd3ebc6..62883623f 100644 --- a/.github/workflows/check_target_on_pr.yml +++ b/.github/workflows/check_target_on_pr.yml @@ -1,7 +1,6 @@ name: check_target -on: - pull_request: - types: [opened, reopened, edited] +on: [push, pull_request] + jobs: check_target: runs-on: ubuntu-latest