.gitignore: #131
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cygwin | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: C:\tools\cygwin\bin\bash.exe -l -i {0} | |
steps: | |
- run: choco install -y cygwin | |
shell: pwsh | |
- run: choco install -y --source cygwin git patch file libiconv-devel | |
- run: git config --global core.autocrlf input | |
shell: bash | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: '0' | |
submodules: 'true' | |
set-safe-directory: 'true' | |
- run: printf 'cd %s' "$(cygpath '${{ github.workspace }}')" >> ~/.bashrc | |
- run: git clone https://github.com/universal-ctags/ctags || echo | |
- run: cp autogen.sh ctags | |
- run: cp autogen.rc ctags | |
- run: ./autogen.sh --help | |
- run: ./autogen.sh -h | |
- run: ./autogen.sh -V | |
- run: ./autogen.sh --version | |
- run: ./autogen.sh env | |
- run: ./autogen.sh integrate zsh | |
- run: ./autogen.sh upgrade | |
- run: cd ctags && ./autogen.sh configure | |
- run: cd ctags && ./configure --prefix=/usr | |
- run: cd ctags && make | |
- run: cd ctags && make install | |
- run: file /usr/bin/ctags | |
- run: /usr/bin/ctags --version |