forked from YosysHQ/yosys
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
287 changed files
with
38,192 additions
and
2,942 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
$Format:%h$ | ||
$Format:%H$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Documentation Report | ||
description: Report a problem with the Yosys documentation | ||
labels: ["pending-verification"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: > | ||
If you have a general question, please ask it in the [Discussions](https://github.com/YosysHQ/yosys/discussions) area | ||
or join our [IRC Channel](https://web.libera.chat/#yosys) or [Community Slack](https://join.slack.com/t/yosyshq/shared_invite/zt-1aopkns2q-EiQ97BeQDt_pwvE41sGSuA). | ||
If you have found a bug in Yosys, or in building the documentation, | ||
please fill out the Bug Report issue form, this form is for problems | ||
with the live documentation on [Read the | ||
Docs](https://yosyshq.readthedocs.io/projects/yosys/). Please only | ||
report problems that appear on the latest version of the documentation. | ||
Please contact [YosysHQ GmbH](https://www.yosyshq.com/) if you need | ||
commercial support for Yosys. | ||
- type: input | ||
id: docs_url | ||
attributes: | ||
label: Link to page | ||
description: "Please provide a link to the page where the problem was found." | ||
placeholder: "e.g. https://yosyshq.readthedocs.io/projects/yosys/" | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: build_number | ||
attributes: | ||
label: Build number | ||
description: "If possible, please provide the latest build number from https://readthedocs.org/projects/yosys/builds/." | ||
placeholder: "e.g. Build #24078236" | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: Issue | ||
description: "Please describe what is incorrect, invalid, or missing." | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: Expected | ||
description: "If applicable, please describe what should appear instead." | ||
validations: | ||
required: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
_What are the reasons/motivation for this change?_ | ||
|
||
_Explain how this is achieved._ | ||
|
||
_If applicable, please suggest to reviewers how they can test the change._ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Build environment setup | ||
description: Configure build env for Yosys builds | ||
runs: | ||
using: composite | ||
steps: | ||
- name: Install Linux Dependencies | ||
if: runner.os == 'Linux' | ||
shell: bash | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install gperf build-essential bison flex libreadline-dev gawk tcl-dev libffi-dev git graphviz xdot pkg-config python3 libboost-system-dev libboost-python-dev libboost-filesystem-dev zlib1g-dev | ||
- name: Install macOS Dependencies | ||
if: runner.os == 'macOS' | ||
shell: bash | ||
run: | | ||
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew install bison flex gawk libffi pkg-config bash autoconf llvm | ||
- name: Linux runtime environment | ||
if: runner.os == 'Linux' | ||
shell: bash | ||
run: | | ||
echo "${{ github.workspace }}/.local/bin" >> $GITHUB_PATH | ||
echo "procs=$(nproc)" >> $GITHUB_ENV | ||
- name: macOS runtime environment | ||
if: runner.os == 'macOS' | ||
shell: bash | ||
run: | | ||
echo "${{ github.workspace }}/.local/bin" >> $GITHUB_PATH | ||
echo "$(brew --prefix llvm)/bin" >> $GITHUB_PATH | ||
echo "$(brew --prefix bison)/bin" >> $GITHUB_PATH | ||
echo "$(brew --prefix flex)/bin" >> $GITHUB_PATH | ||
echo "procs=$(sysctl -n hw.ncpu)" >> $GITHUB_ENV |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
name: Test extra build flows | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
pre_job: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
should_skip: ${{ steps.skip_check.outputs.should_skip }} | ||
steps: | ||
- id: skip_check | ||
uses: fkirc/skip-duplicate-actions@v5 | ||
with: | ||
paths_ignore: '["**/README.md", "docs/**", "guidelines/**"]' | ||
# cancel previous builds if a new commit is pushed | ||
cancel_others: 'true' | ||
# only run on push *or* pull_request, not both | ||
concurrent_skipping: 'same_content_newer' | ||
|
||
vs-prep: | ||
name: Prepare Visual Studio build | ||
runs-on: ubuntu-latest | ||
needs: [pre_job] | ||
if: needs.pre_job.outputs.should_skip != 'true' | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
- name: Build | ||
run: make vcxsrc YOSYS_VER=latest | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: vcxsrc | ||
path: yosys-win32-vcxsrc-latest.zip | ||
|
||
vs-build: | ||
name: Visual Studio build | ||
runs-on: windows-2019 | ||
needs: [vs-prep, pre_job] | ||
if: needs.pre_job.outputs.should_skip != 'true' | ||
steps: | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: vcxsrc | ||
path: . | ||
- name: unzip | ||
run: unzip yosys-win32-vcxsrc-latest.zip | ||
- name: setup-msbuild | ||
uses: microsoft/setup-msbuild@v2 | ||
- name: MSBuild | ||
working-directory: yosys-win32-vcxsrc-latest | ||
run: msbuild YosysVS.sln /p:PlatformToolset=v142 /p:Configuration=Release /p:WindowsTargetPlatformVersion=10.0.17763.0 | ||
|
||
wasi-build: | ||
name: WASI build | ||
needs: pre_job | ||
if: needs.pre_job.outputs.should_skip != 'true' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
- name: Build | ||
run: | | ||
WASI_SDK=wasi-sdk-19.0 | ||
WASI_SDK_URL=https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-19/wasi-sdk-19.0-linux.tar.gz | ||
if ! [ -d ${WASI_SDK} ]; then curl -L ${WASI_SDK_URL} | tar xzf -; fi | ||
mkdir -p build | ||
cat > build/Makefile.conf <<END | ||
export PATH := $(pwd)/${WASI_SDK}/bin:${PATH} | ||
WASI_SYSROOT := $(pwd)/${WASI_SDK}/share/wasi-sysroot | ||
CONFIG := wasi | ||
PREFIX := / | ||
ENABLE_TCL := 0 | ||
ENABLE_READLINE := 0 | ||
ENABLE_PLUGINS := 0 | ||
ENABLE_ZLIB := 0 | ||
END | ||
make -C build -f ../Makefile CXX=clang -j$(nproc) | ||
nix-build: | ||
name: "Build nix flake" | ||
needs: pre_job | ||
if: needs.pre_job.outputs.should_skip != 'true' | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest] | ||
fail-fast: false | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
- uses: cachix/install-nix-action@v26 | ||
with: | ||
install_url: https://releases.nixos.org/nix/nix-2.18.1/install | ||
- run: nix build .?submodules=1 -L |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Build docs artifact with Verific | ||
|
||
on: push | ||
|
||
jobs: | ||
prepare-docs: | ||
# docs builds are needed for anything on main, any tagged versions, and any tag | ||
# or branch starting with docs-preview | ||
if: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/docs-preview') || startsWith(github.ref, 'refs/tags/') }} | ||
runs-on: [self-hosted, linux, x64, fast] | ||
steps: | ||
- name: Checkout Yosys | ||
uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
submodules: true | ||
|
||
- name: Runtime environment | ||
run: | | ||
echo "procs=$(nproc)" >> $GITHUB_ENV | ||
- name: Build Yosys | ||
run: | | ||
make config-clang | ||
echo "ENABLE_VERIFIC := 1" >> Makefile.conf | ||
echo "ENABLE_VERIFIC_EDIF := 1" >> Makefile.conf | ||
echo "ENABLE_VERIFIC_LIBERTY := 1" >> Makefile.conf | ||
echo "ENABLE_VERIFIC_YOSYSHQ_EXTENSIONS := 1" >> Makefile.conf | ||
echo "ENABLE_CCACHE := 1" >> Makefile.conf | ||
make -j${{ env.procs }} ENABLE_LTO=1 | ||
- name: Prepare docs | ||
shell: bash | ||
run: | ||
make docs/prep TARGETS= EXTRA_TARGETS= | ||
|
||
- name: Upload artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: cmd-ref-${{ github.sha }} | ||
path: | | ||
docs/source/cmd | ||
docs/source/generated | ||
docs/source/_images | ||
docs/source/code_examples | ||
- name: Trigger RTDs build | ||
uses: dfm/rtds-action@v1.1.0 | ||
with: | ||
webhook_url: ${{ secrets.RTDS_WEBHOOK_URL }} | ||
webhook_token: ${{ secrets.RTDS_WEBHOOK_TOKEN }} | ||
commit_ref: ${{ github.ref }} |
Oops, something went wrong.