Skip to content

Commit

Permalink
ci: restore use of IO::Pty in MacOS build
Browse files Browse the repository at this point in the history
The IO::Pty build issue on MacOS should be resolved as of IO::Pty 1.19.
  • Loading branch information
jpgrayson committed Jan 28, 2024
1 parent da78194 commit c7ed6c5
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,24 +137,14 @@ jobs:
brew install coreutils cpanminus gnu-sed
echo "$(brew --prefix)/opt/gnu-sed/libexec/gnubin" >> $GITHUB_PATH
echo "$(brew --prefix)/opt/coreutils/libexec/gnubin" >> $GITHUB_PATH
# The IO:Pty 1.18 release does not work on MacOS.
# https://github.com/cpan-authors/IO-Tty/issues/37
# sudo cpanm IO::Pty
sudo cpanm IO::Pty
- name: Test
if: ${{ matrix.os == 'ubuntu-latest' }}
env:
STG_PROVE_OPTS: "--jobs=2"
STG_TEST_OPTS: "--verbose-log"
STG_PROFILE: ${{ matrix.profile }}
run: |
timeout 900s make -C t prove
- name: Test
if: ${{ matrix.os == 'macos-latest' }}
env:
STG_TEST_OPTS: "--verbose-log"
STG_PROFILE: ${{ matrix.profile }}
run: |
timeout 900s make -j2 test
- name: Show Failures
if: ${{ failure() }}
run: |
Expand Down

0 comments on commit c7ed6c5

Please sign in to comment.