Skip to content

Commit

Permalink
temporary disable Windows workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
stnolting committed Oct 10, 2023
1 parent 01fbcd7 commit 40548da
Showing 1 changed file with 39 additions and 39 deletions.
78 changes: 39 additions & 39 deletions .github/workflows/Implementation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:

- name: '🧰 Repository Checkout'
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: '🔧 Generate examples matrix'
id: generate
Expand All @@ -37,7 +37,7 @@ jobs:
steps:

- name: '🧰 Repository Checkout'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
Expand All @@ -56,40 +56,40 @@ jobs:
osflow/${{ matrix.board }}/*-report.txt
Windows:
needs: Matrix
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
include: ${{ fromJson(needs.Matrix.outputs.matrix) }}
name: '🟦 MINGW64 | ${{ matrix.board }} · ${{ matrix.design }}'
defaults:
run:
shell: msys2 {0}
steps:

- name: '🟦 Setup MSYS2'
uses: msys2/setup-msys2@v2
with:
msystem: MINGW64
update: true
install: make
pacboy: >
yosys:p
nextpnr:p
icestorm:p
prjtrellis:p
- name: '⚙️ git config'
run: git config --global core.autocrlf input
shell: bash

- name: '🧰 Checkout'
uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: recursive

- name: '🚧 Generate ${{ matrix.board }} ${{ matrix.design }} bitstream'
run: make -C osflow BOARD=${{ matrix.board }} ${{ matrix.design }}
# Windows:
# needs: Matrix
# runs-on: windows-latest
# strategy:
# fail-fast: false
# matrix:
# include: ${{ fromJson(needs.Matrix.outputs.matrix) }}
# name: '🟦 MINGW64 | ${{ matrix.board }} · ${{ matrix.design }}'
# defaults:
# run:
# shell: msys2 {0}
# steps:
#
# - name: '🟦 Setup MSYS2'
# uses: msys2/setup-msys2@v2
# with:
# msystem: MINGW64
# update: true
# install: make
# pacboy: >
# yosys:p
# nextpnr:p
# icestorm:p
# prjtrellis:p
#
# - name: '⚙️ git config'
# run: git config --global core.autocrlf input
# shell: bash
#
# - name: '🧰 Checkout'
# uses: actions/checkout@v4
# with:
# fetch-depth: 0
# submodules: recursive
#
# - name: '🚧 Generate ${{ matrix.board }} ${{ matrix.design }} bitstream'
# run: make -C osflow BOARD=${{ matrix.board }} ${{ matrix.design }}

0 comments on commit 40548da

Please sign in to comment.