mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 20:04:31 +00:00
- Introduce lib/shell helpers and keep etc/* scripts thin via compatibility shims - Move Kerberos validation to scripts/validation/check_kerberos.sh and update callers - Add deterministic shellspec unit tests under tests/shellspec/ and wire Maven to run them - Add minimal Spring Boot authority module with startup + /health endpoint and Maven wiring - Document the new layout in docs/layout.md Co-authored-by: Junie <junie@jetbrains.com>
36 lines
1.1 KiB
YAML
36 lines
1.1 KiB
YAML
name: Windows Cygwin
|
|
|
|
on: [push, pull_request]
|
|
|
|
env:
|
|
PATH: 'C:\tools\cygwin\bin;C:\Program Files\Git\bin;C:\Windows\System32;C:\Windows;C:\Windows\System32\WindowsPowerShell\v1.0;C:\ProgramData\Chocolatey\bin'
|
|
FORCE_COLOR: 1
|
|
|
|
defaults:
|
|
run:
|
|
shell: cmd
|
|
|
|
jobs:
|
|
windows-cygwin:
|
|
runs-on: windows-latest
|
|
if: "!contains(github.event.head_commit.message, 'ci skip')"
|
|
strategy:
|
|
matrix:
|
|
shells:
|
|
- {shell: sh, package: sh}
|
|
- {shell: dash, package: dash}
|
|
- {shell: bash, package: bash}
|
|
- {shell: ash, package: busybox}
|
|
- {shell: mksh, package: mksh}
|
|
- {shell: posh, package: posh}
|
|
- {shell: zsh, package: zsh}
|
|
fail-fast: false
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: choco install -y --no-progress cygwin cyg-get
|
|
- run: cyg-get nc ${{ matrix.shells.package }}
|
|
- run: cygcheck -c
|
|
- run: ${{ matrix.shells.shell }} ./shellspec --task fixture:stat:prepare
|
|
- run: ${{ matrix.shells.shell }} -c "rm helper/fixture/stat/no-permission"
|
|
- run: ${{ matrix.shells.shell }} ./shellspec
|