Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 [.github] disable Windows/MSYS2 workflows for now #424

Merged
merged 1 commit into from
Oct 11, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
106 changes: 53 additions & 53 deletions .github/workflows/Processor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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