Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

releng: Add github workflow for continuous integration (2021-06 branch) #2

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Continuous Integration

on:
push:
branches:
- master
- stable-*
- 2021-06
pull_request:
branches:
- master
- stable-*
- 2021-06

jobs:
build:

runs-on: ubuntu-22.04
timeout-minutes: 90

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Copy legacy files
run: |
cp -f ./rcp/org.eclipse.tracecompass.incubator.rcp.product/legacy/tracing.incubator.product ./rcp/org.eclipse.tracecompass.incubator.rcp.product/tracing.incubator.product
cp -f ./trace-server/org.eclipse.tracecompass.incubator.trace.server.product/legacy/traceserver.product ./trace-server/org.eclipse.tracecompass.incubator.trace.server.product/traceserver.product
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Check if you want to do a matrix operation?

distribution: 'temurin'
cache: maven
- name: Set up Maven
uses: stCarolas/setup-maven@07fbbe97d97ef44336b7382563d66743297e442f # v4.5
with:
maven-version: 3.9.5
- name: Build with Maven
uses: coactions/setup-xvfb@b6b4fcfb9f5a895edadc3bc76318fae0ac17c8b3 # v1.0.1
with:
run: >-
mvn -B clean install -Dtarget-platform=tracecompass-incubator-e4.20 -Djdk.version=11 -Djdk.release=11 -Dtycho-use-project-settings=false
- name: Upload logs
uses: actions/upload-artifact@v3
if: success() || failure()
with:
name: build logs
path: |
*/*tests/screenshots/*.jpeg
*/*tests/target/work/data/.metadata/.log
- name: Upload test results
uses: actions/upload-artifact@v3
if: success() || failure()
with:
name: test results
path: |
*/*/target/surefire-reports/*.xml
Loading