Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .github/workflows/cygwin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: cygwin

on: push

jobs:
cygwin:
runs-on: windows-latest
env:
SHELLOPTS: igncr
defaults:
run:
shell: C:\tools\cygwin\bin\bash.exe --login '{0}'
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: build on cygwin
uses: egor-tensin/setup-cygwin@v4
with:
packages: cmake gcc-g++ libnettle-devel autoconf automake make
- name: Run my action
run: |
cd ${GITHUB_WORKSPACE}
ls
aclocal --warnings=all
autoheader --warnings=all
automake --add-missing --warnings=all
autoconf --warnings=all
./configure
make
- name: Upload windows executable
uses: actions/upload-artifact@v3
with:
name: executable
path: ${{ github.workspace }}/rdfind.exe