From a2cbea8017d8a08d27d9284572641a9233a02a74 Mon Sep 17 00:00:00 2001 From: x Date: Tue, 9 May 2023 19:12:04 +0200 Subject: [PATCH] . --- .github/workflows/build.yaml | 37 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 19 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index e915f2e..96e02e5 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -25,6 +25,24 @@ jobs: - run: lscpu - run: ./icapp ZIPF + windows: + runs-on: windows-latest + defaults: + run: + shell: msys2 {0} + steps: + - uses: actions/checkout@v3 + with: + submodules: 'true' + - uses: msys2/setup-msys2@v2 + with: + msystem: MINGW64 + install: git make mingw-w64-x86_64-gcc + update: true + - run: git submodule update --init --recursive + - run: make + - run: ./icapp ZIPF + macos: runs-on: '${{ matrix.os }}' strategy: @@ -42,23 +60,4 @@ jobs: - run: make - run: sysctl -n machdep.cpu.brand_string - run: ./icapp ZIPF - - windows: - runs-on: windows-latest - defaults: - run: - shell: msys2 {0} - steps: - - uses: actions/checkout@v3 - with: - submodules: 'true' - - uses: msys2/setup-msys2@v2 - with: - msystem: MINGW64 - install: git - update: true - - run: git submodule update --init --recursive - - run: make - - run: ./icapp ZIPF -