Skip to content

don't install subversion by default #38

don't install subversion by default

don't install subversion by default #38

Workflow file for this run

# https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions
name: Build
on:
push:
paths-ignore:
- '**/*.md'
- '.github/*.yml'
pull_request:
workflow_dispatch:
# https://github.blog/changelog/2020-07-06-github-actions-manual-triggers-with-workflow_dispatch/
jobs:
build:
runs-on: windows-latest
steps:
- name: "SCM Checkout"
uses: actions/checkout@v3 #https://github.com/actions/checkout
- name: "Cache: cygwin packages repository"
uses: actions/cache@v3
with:
path: cygwin\.pkg-cache
key: ${{ runner.os }}-cygwinrepo
- name: "Install: cygwin-portable"
shell: cmd
run: call .\cygwin-portable-installer.cmd
- name: "Test: Start cygwin-portable"
shell: cmd
run: call .\cygwin-portable.cmd "bash --version"
- name: "Test: apt-cyg update"
shell: cmd
run: call .\cygwin-portable.cmd "apt-cyg update"