mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
Merge pull request #1164 from Alfresco/feature-2.7/APPS-233_FixTravisSkeleton
Feature 2.7/apps 233 fix travis skeleton # Conflicts: # .travis.yml
This commit is contained in:
committed by
rodicasutu
parent
ab8a11e90c
commit
fe06572840
58
.travis.settings.xml
Normal file
58
.travis.settings.xml
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
<settings>
|
||||||
|
<profiles>
|
||||||
|
<profile>
|
||||||
|
<id>alfresco-internal</id>
|
||||||
|
<activation>
|
||||||
|
<activeByDefault>true</activeByDefault>
|
||||||
|
</activation>
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>alfresco-internal</id>
|
||||||
|
<releases>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
</releases>
|
||||||
|
<snapshots>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
</snapshots>
|
||||||
|
<name>Alfresco Internal Repository</name>
|
||||||
|
<url>https://artifacts.alfresco.com/nexus/content/groups/internal</url>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
<pluginRepositories>
|
||||||
|
<pluginRepository>
|
||||||
|
<id>alfresco-internal</id>
|
||||||
|
<name>Alfresco Internal Repository</name>
|
||||||
|
<url>https://artifacts.alfresco.com/nexus/content/groups/internal</url>
|
||||||
|
</pluginRepository>
|
||||||
|
<pluginRepository>
|
||||||
|
<id>alfresco-public</id>
|
||||||
|
<name>Alfresco Public Repository</name>
|
||||||
|
<url>https://artifacts.alfresco.com/nexus/content/groups/public</url>
|
||||||
|
</pluginRepository>
|
||||||
|
<pluginRepository>
|
||||||
|
<id>alfresco-private</id>
|
||||||
|
<name>Alfresco Private Repository</name>
|
||||||
|
<url>https://artifacts.alfresco.com/nexus/content/groups/private</url>
|
||||||
|
</pluginRepository>
|
||||||
|
</pluginRepositories>
|
||||||
|
</profile>
|
||||||
|
</profiles>
|
||||||
|
|
||||||
|
<servers>
|
||||||
|
<server>
|
||||||
|
<id>docker.io</id>
|
||||||
|
<username>${env.DOCKERHUB_USERNAME}</username>
|
||||||
|
<password>${env.DOCKERHUB_PASSWORD}</password>
|
||||||
|
</server>
|
||||||
|
<server>
|
||||||
|
<id>alfresco-internal</id>
|
||||||
|
<username>${env.MAVEN_USERNAME}</username>
|
||||||
|
<password>${env.MAVEN_PASSWORD}</password>
|
||||||
|
</server>
|
||||||
|
<server>
|
||||||
|
<id>alfresco-private</id>
|
||||||
|
<username>${env.MAVEN_USERNAME}</username>
|
||||||
|
<password>${env.MAVEN_PASSWORD}</password>
|
||||||
|
</server>
|
||||||
|
</servers>
|
||||||
|
</settings>
|
96
.travis.yml
96
.travis.yml
@@ -1,6 +1,94 @@
|
|||||||
|
os: linux
|
||||||
|
dist: xenial
|
||||||
language: java
|
language: java
|
||||||
jdk:
|
jdk:
|
||||||
- oraclejdk8
|
- openjdk8
|
||||||
sudo: false
|
|
||||||
install: true
|
branches:
|
||||||
script: travis_wait 30 mvn -B clean verify -Dcommunity -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
|
only:
|
||||||
|
- /release\/V2.7.*/
|
||||||
|
- /feature-2.7\/.*/
|
||||||
|
- /merge-2.7\/.*/
|
||||||
|
- /hotfix-2.7\/.*/
|
||||||
|
|
||||||
|
cache:
|
||||||
|
directories:
|
||||||
|
- $HOME/.m2
|
||||||
|
# the cache can grow constantly
|
||||||
|
before_cache:
|
||||||
|
- rm -rf $HOME/.m2/repository/org/alfresco/alfresco-rm*
|
||||||
|
|
||||||
|
before_install:
|
||||||
|
- "cp .travis.settings.xml $HOME/.m2/settings.xml"
|
||||||
|
install: skip
|
||||||
|
|
||||||
|
stages:
|
||||||
|
- name: Build AGS
|
||||||
|
- name: Tests
|
||||||
|
if: commit_message !~ /\[skip tests\]/
|
||||||
|
- name: Security Scans
|
||||||
|
- name: Release
|
||||||
|
- name: Publish
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
include:
|
||||||
|
- name: "Build Community"
|
||||||
|
stage: Build AGS
|
||||||
|
script:
|
||||||
|
- echo "Build Community"
|
||||||
|
- name: "Build Enterprise"
|
||||||
|
stage: Build AGS
|
||||||
|
script:
|
||||||
|
- echo "Build Enterprise"
|
||||||
|
- name: "Benchmark"
|
||||||
|
stage: Build AGS
|
||||||
|
script:
|
||||||
|
- echo "Benchmark"
|
||||||
|
|
||||||
|
- name: "Community Integrations Tests on MySQL"
|
||||||
|
stage: Tests
|
||||||
|
script:
|
||||||
|
- echo "Community Integrations Tests on MySQL"
|
||||||
|
- name: "Enterprise Integrations Tests on MySQL"
|
||||||
|
stage: Tests
|
||||||
|
script:
|
||||||
|
- echo "Enterprise Integrations Tests on MySQL"
|
||||||
|
- name: "Community Rest API Tests"
|
||||||
|
stage: Tests
|
||||||
|
script:
|
||||||
|
- echo "Community Rest API Tests"
|
||||||
|
- name: "Enterprise Rest API Tests"
|
||||||
|
stage: Tests
|
||||||
|
script:
|
||||||
|
- echo "Enterprise Rest API Tests"
|
||||||
|
- name: "Community UI Tests ..."
|
||||||
|
stage: Tests
|
||||||
|
script:
|
||||||
|
- echo "Community UI Tests ..."
|
||||||
|
- name: "Enterprise UI Tests ..."
|
||||||
|
stage: Tests
|
||||||
|
script:
|
||||||
|
- echo "Enterprise UI Tests ..."
|
||||||
|
|
||||||
|
- name: "Source Clear Scan (SCA)"
|
||||||
|
stage: Security Scans
|
||||||
|
script:
|
||||||
|
- echo "Source Clear Scan (SCA)"
|
||||||
|
- name: "Static Analysis (SAST)"
|
||||||
|
stage: Security Scans
|
||||||
|
script:
|
||||||
|
- echo "Static Analysis (SAST)"
|
||||||
|
|
||||||
|
- name: "Community Release"
|
||||||
|
stage: Release
|
||||||
|
script:
|
||||||
|
- echo "Community Release"
|
||||||
|
- name: "Enterprise Release"
|
||||||
|
stage: Release
|
||||||
|
script:
|
||||||
|
- echo "Enterprise Release"
|
||||||
|
|
||||||
|
- name: "Copy to S3 Release Bucket"
|
||||||
|
stage: Publish
|
||||||
|
script:
|
||||||
|
- echo "Copy to S3 Release Bucket"
|
||||||
|
Reference in New Issue
Block a user