[.github] disable Windows workflows for now

This commit is contained in:
stnolting 2022-10-09 19:47:45 +02:00
parent 4d5952af04
commit c428009842

View file

@ -77,56 +77,56 @@ jobs:
cmd: ./sim/run.py --ci-mode -v
Windows:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
include: [
{icon: '⬛', installs: 'MINGW32' },
{icon: '🟦', installs: 'MINGW64' },
]
name: '${{ matrix.icon }} ${{ matrix.installs }} | VUnit'
defaults:
run:
shell: msys2 {0}
steps:
- name: '⚙️ git config'
run: git config --global core.autocrlf input
shell: bash
- name: '🧰 Checkout'
uses: actions/checkout@v2
with:
# The command 'git describe' (used for version) needs the history.
fetch-depth: 0
- name: '${{ matrix.icon }} Setup MSYS2'
uses: msys2/setup-msys2@v2
with:
msystem: ${{ matrix.installs }}
update: true
install: make
pacboy: >
ghdl:p
python-pip:p
riscv64-unknown-elf-gcc:p
- name: '⚙️ Build and install Processor Check software'
run: |
make -C sw/example/processor_check \
RISCV_PREFIX=riscv64-unknown-elf- \
clean_all \
USER_FLAGS+=-DRUN_CHECK \
USER_FLAGS+=-DUART0_SIM_MODE \
USER_FLAGS+=-DSUPPRESS_OPTIONAL_UART_PRINT \
MARCH=rv32imc \
info \
all
- name: '🐍 Install VUnit'
run: pip install vunit_hdl
- name: '🚧 Run Processor Hardware Tests with VUnit'
run: ./sim/run.py --ci-mode -v
# Windows:
# runs-on: windows-latest
# strategy:
# fail-fast: false
# matrix:
# include: [
# {icon: '⬛', installs: 'MINGW32' },
# {icon: '🟦', installs: 'MINGW64' },
# ]
# name: '${{ matrix.icon }} ${{ matrix.installs }} | VUnit'
# defaults:
# run:
# shell: msys2 {0}
# steps:
#
# - name: '⚙️ git config'
# run: git config --global core.autocrlf input
# shell: bash
#
# - name: '🧰 Checkout'
# uses: actions/checkout@v2
# with:
# # The command 'git describe' (used for version) needs the history.
# fetch-depth: 0
#
# - name: '${{ matrix.icon }} Setup MSYS2'
# uses: msys2/setup-msys2@v2
# with:
# msystem: ${{ matrix.installs }}
# update: true
# install: make
# pacboy: >
# ghdl:p
# python-pip:p
# riscv64-unknown-elf-gcc:p
#
# - name: '⚙️ Build and install Processor Check software'
# run: |
# make -C sw/example/processor_check \
# RISCV_PREFIX=riscv64-unknown-elf- \
# clean_all \
# USER_FLAGS+=-DRUN_CHECK \
# USER_FLAGS+=-DUART0_SIM_MODE \
# USER_FLAGS+=-DSUPPRESS_OPTIONAL_UART_PRINT \
# MARCH=rv32imc \
# info \
# all
#
# - name: '🐍 Install VUnit'
# run: pip install vunit_hdl
#
# - name: '🚧 Run Processor Hardware Tests with VUnit'
# run: ./sim/run.py --ci-mode -v