Skip to content

Commit

Permalink
removed Appveyor and Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
jacoby committed Feb 23, 2024
1 parent 5ae19e4 commit dee7c5a
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 34 deletions.
29 changes: 15 additions & 14 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
cache:
- C:\strawberry
# moved to GitHub Actions
# cache:
# - C:\strawberry

install:
- if not exist "C:\strawberry" choco install strawberryperl -y
- set PATH=C:\strawberry\perl\bin;C:\strawberry\perl\site\bin;C:\strawberry\c\bin;%PATH%
- cd %APPVEYOR_BUILD_FOLDER%
- cpanm IO::Pty IO::Tty
- cpanm --quiet --installdeps --with-develop --notest .
# install:
# - if not exist "C:\strawberry" choco install strawberryperl -y
# - set PATH=C:\strawberry\perl\bin;C:\strawberry\perl\site\bin;C:\strawberry\c\bin;%PATH%
# - cd %APPVEYOR_BUILD_FOLDER%
# - cpanm IO::Pty IO::Tty
# - cpanm --quiet --installdeps --with-develop --notest .

build: off
build_script:
- perl Makefile.PL
- gmake
# build: off
# build_script:
# - perl Makefile.PL
# - gmake

test_script:
- gmake test
# test_script:
# - gmake test
41 changes: 21 additions & 20 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
branches:
except:
- gh-pages
language: perl
env:
- PERL_USE_UNSAFE_INC=0
perl:
- "5.38"
- "5.36"
- "5.34"
- "5.32"
- "5.30"
- "5.28"
- "5.26"
- "5.24"
- "5.22"
- "5.20"
- "5.18" # IO::Tty is missing on the Travis server or cannot be installed?
- "5.16"
- "5.14"
# moved to GitHub Actions
# branches:
# except:
# - gh-pages
# language: perl
# env:
# - PERL_USE_UNSAFE_INC=0
# perl:
# - "5.38"
# - "5.36"
# - "5.34"
# - "5.32"
# - "5.30"
# - "5.28"
# - "5.26"
# - "5.24"
# - "5.22"
# - "5.20"
# - "5.18" # IO::Tty is missing on the Travis server or cannot be installed?
# - "5.16"
# - "5.14"

0 comments on commit dee7c5a

Please sign in to comment.