mirror of
https://github.com/myhdl/myhdl.git
synced 2025-01-24 21:52:56 +08:00
* Add initial actions for winows, include core and ghdl, iverilog is not working yet * Rename some steps to show linux providence * Rename some steps to show linux providence
155 lines
4.7 KiB
YAML
155 lines
4.7 KiB
YAML
name: Test myhdl
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
schedule:
|
|
- cron: '0 1 * * 0'
|
|
jobs:
|
|
run_lint:
|
|
strategy:
|
|
fail-fast: false # So that one fail doesn't stop remaining tests
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
python -m pip install --upgrade -r requirements.txt
|
|
- name: Run lint
|
|
continue-on-error: true
|
|
run: |
|
|
pyflakes myhdl
|
|
|
|
build_ghdl_linux:
|
|
#uses: daxzio/setup-eda/.github/workflows/setup_ghdl.yml@main
|
|
uses: ./.github/workflows/setup_ghdl.yml
|
|
build_iverilog_linux:
|
|
#uses: daxzio/setup-eda/.github/workflows/setup_iverilog.yml@main
|
|
uses: ./.github/workflows/setup_iverilog.yml
|
|
|
|
build_code_linux:
|
|
|
|
strategy:
|
|
fail-fast: false # So that one fail doesn't stop remaining tests
|
|
matrix:
|
|
python-version: ["3.7", "3.8", "3.9", "3.10", "pypy-3.9", "3.11"]
|
|
target: [core, iverilog, ghdl]
|
|
runs-on: ubuntu-latest
|
|
needs: [run_lint, build_ghdl_linux, build_iverilog_linux]
|
|
|
|
env:
|
|
CI_TARGET: ${{ matrix.target }}
|
|
TERM: xterm-256color # for tput in the script file
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Report Environment
|
|
run: |
|
|
echo "Runing tests with env set to : ${CI_TARGET}"
|
|
- name: Cache GHDL
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: ${{ needs.build_ghdl_linux.outputs.cache_dir }}
|
|
key: ${{ needs.build_ghdl_linux.outputs.cache_key }}
|
|
- name: Cache Icarus
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: ${{ needs.build_iverilog_linux.outputs.cache_dir }}
|
|
key: ${{ needs.build_iverilog_linux.outputs.cache_key }}
|
|
- name: Add to PATH
|
|
run: |
|
|
echo "${{ needs.build_ghdl_linux.outputs.cache_dir }}/bin" >> $GITHUB_PATH
|
|
echo "${{ needs.build_iverilog_linux.outputs.cache_dir }}/bin" >> $GITHUB_PATH
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
cache: 'pip'
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
python -m pip install --upgrade -r requirements.txt
|
|
python -m pip install .
|
|
- name: Install depenacy for ghdl
|
|
if: ${{ env.CI_TARGET == 'ghdl' }}
|
|
run: |
|
|
sudo apt install gnat
|
|
- name: Run Tests
|
|
run: |
|
|
make ${CI_TARGET}
|
|
|
|
build_code_windows:
|
|
|
|
strategy:
|
|
fail-fast: false # So that one fail doesn't stop remaining tests
|
|
matrix:
|
|
python-version: ["3.11"]
|
|
#target: [core, iverilog, ghdl]
|
|
target: [core, ghdl]
|
|
runs-on: windows-latest
|
|
defaults:
|
|
run:
|
|
shell: msys2 {0}
|
|
needs: [run_lint]
|
|
|
|
env:
|
|
CI_TARGET: ${{ matrix.target }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: msys2/setup-msys2@v2
|
|
with:
|
|
msystem: MINGW64
|
|
path-type: inherit
|
|
update: true
|
|
pacboy: >-
|
|
make:p
|
|
- name: Report Environment
|
|
run: |
|
|
echo "Runing tests with env set to : ${{ env.CI_TARGET }}"
|
|
|
|
- if: ${{ env.CI_TARGET == 'ghdl' }}
|
|
uses: ghdl/setup-ghdl-ci@nightly
|
|
with:
|
|
backend: llvm
|
|
- if: ${{ env.CI_TARGET == 'iverilog' }}
|
|
name: Choco iverilog
|
|
run: |
|
|
choco install --yes ${{ env.CI_TARGET }}
|
|
- if: ${{ env.CI_TARGET == 'iverilog' }}
|
|
name: Compile vpi
|
|
run: |
|
|
make iverilog_myhdl.vpi
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
cache: 'pip'
|
|
- name: Set environment variables
|
|
run: |
|
|
echo "${{ env.pythonLocation }}\bin" >> $GITHUB_PATH
|
|
echo "C:\ProgramData\Chocolatey\bin" >> $GITHUB_PATH
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
python -m pip install --upgrade -r requirements.txt
|
|
python -m pip install .
|
|
- name: Run Tests
|
|
run: |
|
|
make ${{ env.CI_TARGET }}
|
|
|
|
pypy_release:
|
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
|
|
runs-on: ubuntu-latest
|
|
needs: [build_code_linux, build_code_windows]
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Make PyPi dist release
|
|
run: make dist
|
|
- name: Publish Python distribution to PyPI
|
|
uses: pypa/gh-action-pypi-publish@release/v1
|
|
with:
|
|
password: ${{ secrets.PYPI_API_TOKEN }}
|