memory_libmap: look for ram_style attributes on surrounding signals #3141
Workflow file for this run
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
name: Visual Studio Build | |
on: [push, pull_request] | |
jobs: | |
yosys-vcxsrc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: make vcxsrc YOSYS_VER=latest | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: vcxsrc | |
path: yosys-win32-vcxsrc-latest.zip | |
build: | |
runs-on: windows-2019 | |
needs: yosys-vcxsrc | |
steps: | |
- uses: actions/download-artifact@v3 | |
with: | |
name: vcxsrc | |
path: . | |
- name: unzip | |
run: unzip yosys-win32-vcxsrc-latest.zip | |
- name: setup-msbuild | |
uses: microsoft/setup-msbuild@v1 | |
- name: MSBuild | |
working-directory: yosys-win32-vcxsrc-latest | |
run: msbuild YosysVS.sln /p:PlatformToolset=v142 /p:Configuration=Release /p:WindowsTargetPlatformVersion=10.0.17763.0 |