mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-12-22 22:13:11 -05:00
Split Windows with PowerShell
This commit is contained in:
parent
7cfdc2b126
commit
83fa3de220
1 changed files with 18 additions and 2 deletions
20
.github/workflows/eowyn.yml
vendored
20
.github/workflows/eowyn.yml
vendored
|
@ -13,10 +13,10 @@ defaults:
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build-linux_mac:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, windows-latest, macos-latest]
|
os: [ubuntu-latest, macos-latest]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
|
@ -30,3 +30,19 @@ jobs:
|
||||||
|
|
||||||
- name: Run Eowyn
|
- name: Run Eowyn
|
||||||
run: patches/eowyn.sh
|
run: patches/eowyn.sh
|
||||||
|
|
||||||
|
build-windows:
|
||||||
|
runs-on: windows-latest
|
||||||
|
timeout-minutes: 30
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Setup Zig
|
||||||
|
uses: goto-bus-stop/setup-zig@v2
|
||||||
|
with:
|
||||||
|
version: master
|
||||||
|
|
||||||
|
- name: Run Eowyn
|
||||||
|
run: patches/eowyn.sh
|
||||||
|
shell: pwsh
|
||||||
|
|
Loading…
Reference in a new issue