From 063233be9a936bcc1bbc08c4916fbde61bd08f3f Mon Sep 17 00:00:00 2001 From: dshimo Date: Wed, 13 Oct 2021 11:43:36 -0500 Subject: [PATCH] rm travis and appveyor files --- .travis.yml | 30 ------------------------------ appveyor.ps1 | 42 ------------------------------------------ appveyor.yml | 41 ----------------------------------------- 3 files changed, 113 deletions(-) delete mode 100644 .travis.yml delete mode 100644 appveyor.ps1 delete mode 100644 appveyor.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index d135a4eb8..000000000 --- a/.travis.yml +++ /dev/null @@ -1,30 +0,0 @@ -sudo: required -dist: xenial -language: java -jdk: - - openjdk8 - - openjdk11 -env: - - RUNTIME=ol RUNTIME_VERSION=20.0.0.6 - - RUNTIME=ol RUNTIME_VERSION=20.0.0.9 - - RUNTIME=wlp RUNTIME_VERSION=20.0.0.6 - - RUNTIME=wlp RUNTIME_VERSION=20.0.0.9 -cache: - directories: - - $HOME/.m2 -before_install: - - echo "Deleting old .m2 artifacts..." - - rm -rf $HOME/.m2/repository/net/wasdev - - rm -rf $HOME/.m2/repository/io/openliberty - - echo 'Installing ci.ant lib...' - - git clone https://github.com/OpenLiberty/ci.ant.git ./ci.ant - - cd ./ci.ant - - mvn clean install - - cd .. - - echo 'Installing ci.common lib...' - - git clone https://github.com/OpenLiberty/ci.common.git ./ci.common - - cd ./ci.common - - mvn clean install - - cd .. -script: - - travis_wait 40 mvn verify -Ponline-its -Dinvoker.streamLogs=true -Druntime=$RUNTIME -DruntimeVersion=$RUNTIME_VERSION diff --git a/appveyor.ps1 b/appveyor.ps1 deleted file mode 100644 index c8bd25fb3..000000000 --- a/appveyor.ps1 +++ /dev/null @@ -1,42 +0,0 @@ -$mavenConfig = ' - - - appveyor - - true - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - - true - - - false - - - - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - - true - - - false - - - - - -' - -New-Item "$env:USERPROFILE\.m2" -ItemType Directory -Force | Out-Null -Set-Content "$env:USERPROFILE\.m2\settings.xml" -Value $mavenConfig \ No newline at end of file diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 4fdd78303..000000000 --- a/appveyor.yml +++ /dev/null @@ -1,41 +0,0 @@ -environment: - matrix: - - jdk: "C:\\Program Files\\Java\\jdk1.8.0\\bin:" - RUNTIME_VERSION: 20.0.0.6 - RUNTIME: ol - - jdk: "C:\\Program Files\\Java\\jdk1.8.0\\bin:" - RUNTIME_VERSION: 20.0.0.9 - RUNTIME: ol - - jdk: "C:\\Program Files\\Java\\jdk1.8.0\\bin:" - RUNTIME_VERSION: 20.0.0.6 - RUNTIME: wlp - - jdk: "C:\\Program Files\\Java\\jdk1.8.0\\bin:" - RUNTIME_VERSION: 20.0.0.9 - RUNTIME: wlp - -install: - - cmd: | - choco install maven - refreshenv - where mvn - cd C:\projects\ci-maven - - ps: .\appveyor.ps1 - -before_build: - - cmd: | - echo "Installing ci.ant lib..." - git clone https://github.com/OpenLiberty/ci.ant.git ci.ant - cd ci.ant - mvn clean install - cd.. - echo "Installing ci.common lib..." - git clone https://github.com/OpenLiberty/ci.common.git ci.common - cd ci.common - mvn clean install - cd.. - -build_script: - - "echo %WLP_VERSION%" - - "mvn verify -Ponline-its -Dinvoker.streamLogs=true -Druntime=%RUNTIME% -DruntimeVersion=%RUNTIME_VERSION%" - -test: off