Skip to content

Commit

Permalink
Merge pull request #533 from ChristianMurphy/ci/migrate-to-github-act…
Browse files Browse the repository at this point in the history
…ions

ci: setup github actions
  • Loading branch information
ChristianMurphy authored Aug 24, 2021
2 parents 98f803d + a4b43b7 commit d9b387b
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 164 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
test:
name: "${{ matrix.platform }} with Java ${{ matrix.java-distribution }} version 8"
strategy:
matrix:
platform:
- ubuntu-latest
- windows-latest
- macos-latest
java-distribution:
- adopt-hotspot
- temurin
- zulu
runs-on: ${{ matrix.platform }}
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Java
uses: actions/setup-java@v2
with:
distribution: ${{ matrix.java-distribution }}
java-version: 8
- name: Build
run: ./gradlew -i -S build
- name: Tomcat Install
run: ./gradlew -i -S tomcatInstall
- name: Start Tomcat
run: ./gradlew -i -S tomcatStart
- name: Stop Tomcat
run: ./gradlew -i -S tomcatStop
- name: Clear Logs Tomcat
run: ./gradlew -i -S tomcatClearLogs
- name: Start Database
run: ./gradlew -i -S hsqlStart
- name: Init Data
run: ./gradlew -i -S dataInit
- name: Stop Database
run: ./gradlew -i -S hsqlStop
- name: Generate Skin
run: ./gradlew -i -S skinGenerate -DskinName=test
138 changes: 0 additions & 138 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![uPortal logo](docs/en/images/uPortal-logo.jpg)

[![Linux Build Status](https://travis-ci.org/uPortal-Project/uPortal-start.svg?branch=master)](https://travis-ci.org/uPortal-Project/uPortal-start)
[![build status](https://github.com/uPortal-Project/uPortal-start/workflows/CI/badge.svg?branch=master)](https://github.com/uPortal-Project/uPortal-start/actions)

[:fr: Français](docs/fr)

Expand Down
24 changes: 0 additions & 24 deletions appveyor.yml

This file was deleted.

2 changes: 1 addition & 1 deletion docs/fr/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![uPortal logo](../en/images/uPortal-logo.jpg)

[![Linux Build Status](https://travis-ci.org/uPortal-Project/uPortal-start.svg?branch=master)](https://travis-ci.org/uPortal-Project/uPortal-start)
[![build status](https://github.com/uPortal-Project/uPortal-start/workflows/CI/badge.svg?branch=master)](https://github.com/uPortal-Project/uPortal-start/actions)

## À propos d'uPortal-start

Expand Down

0 comments on commit d9b387b

Please sign in to comment.