Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cygwin, etc? #507

Open
mohawk2 opened this issue Dec 8, 2020 · 1 comment
Open

Cygwin, etc? #507

mohawk2 opened this issue Dec 8, 2020 · 1 comment

Comments

@mohawk2
Copy link

mohawk2 commented Dec 8, 2020

How much effort would it take to also support Cygwin etc on this excellent "action"? Also, what is the "default" Perl on the GH-provided Windows environment?

@skirmess
Copy link
Contributor

skirmess commented Jun 30, 2021

You can install Cygwin with the cygwin/cygwin-install-action action.

  cygwin:
    runs-on: windows-latest

    strategy:
      fail-fast: false
      matrix:
        platform: [ 'x86', 'x86_64' ]

    defaults:
      run:
        shell: bash -o igncr {0}

    steps:
      - uses: cygwin/cygwin-install-action@master
        with:
          packages: >-
            gcc-core
            gcc-g++
            git
            libcrypt-devel
            libssl-devel
            make
            perl
            wget
          platform: ${{ matrix.platform }}

      - run: perl ...
        env:
          PATH: /usr/local/bin:/usr/bin

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants