Skip to content
Merged
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
25 changes: 24 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ All of the following inputs are optional.

- `pkgs-to-install`:
- Comma-separated list containing the Cygwin packages needed to install GAP
- default: `'wget,git,gcc-g++,gcc-core,libgmp-devel,make,libtool,autoconf,zlib-devel,libreadline-devel,xdg-utils'`
- default: `'wget,git,gcc-g++,gcc-core,libgmp-devel,make,libtool,autoconf,zlib-devel,libreadline-devel,xdg-utils,automake'`
- `extra-pkgs-to-install`:
- Comma-separated list containing the extra Cygwin packages needed to install additional packages
- default: `''`
Expand All @@ -31,6 +31,29 @@ issue and possibly revert to v1).
Moreover the `EXTRA_PKGS_TO_INSTALL` input was renamed to `extra-pkgs-to-install`,
and `PKGS_TO_INSTALL` was renamed to `pkgs-to-install`.

### Examples

The following is a minimal example to run this action.

```yaml
name: CI

on:
push:
pull_request:

jobs:
# The CI test job
test:
name: CI test
runs-on: windows-latest

steps:
- uses: actions/checkout@v6
- uses: gap-actions/setup-cygwin@v2
# ... additional steps using GAP will usually follow here
```

## Contact
Please submit bug reports, suggestions for improvements and patches via
the [issue tracker](https://github.com/gap-actions/setup-cygwin/issues).
Expand Down