Skip to content

Commit

Permalink
Merge branch 'master' into 345_ViewerFilterWithLimit
Browse files Browse the repository at this point in the history
  • Loading branch information
eobrienPilz committed Mar 25, 2024
2 parents 693a6f1 + c40b7a1 commit 03b85b8
Show file tree
Hide file tree
Showing 6,540 changed files with 399,267 additions and 43,210 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
14 changes: 10 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: daily
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: daily


- package-ecosystem: maven
directory: /
schedule:
interval: daily
46 changes: 0 additions & 46 deletions .github/workflows/build.yml

This file was deleted.

21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Continuous Integration
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
check-freeze-period:
if: github.event_name == 'pull_request'
uses: eclipse-platform/eclipse.platform.releng.aggregator/.github/workflows/verifyFreezePeriod.yml@master
check-merge-commits:
if: github.event_name == 'pull_request'
uses: eclipse-platform/eclipse.platform.releng.aggregator/.github/workflows/checkMergeCommits.yml@master
build:
uses: eclipse-platform/eclipse.platform.releng.aggregator/.github/workflows/mavenBuild.yml@master

14 changes: 14 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: CodeQL call

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
schedule:
- cron: '15 8 * * 1'
workflow_call:

jobs:
callCodeQLworkflow:
uses: eclipse-platform/eclipse.platform.releng.aggregator/.github/workflows/codeQLworkflow.yml@master
35 changes: 0 additions & 35 deletions .github/workflows/toolchains.xml

This file was deleted.

15 changes: 15 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Publish Unit Test Results

on:
workflow_run:
workflows: ["Continuous Integration"]
types:
- completed

jobs:
check:
uses: eclipse-platform/eclipse.platform.releng.aggregator/.github/workflows/publishTestResults.yml@master




15 changes: 15 additions & 0 deletions .github/workflows/updateRelease.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Update to next release
on:
milestone:
types: [created]

permissions:
contents: read

jobs:
update:
if: contains(github.event.milestone.description, 'Release')
permissions:
pull-requests: write
contents: write
uses: eclipse-platform/eclipse.platform.releng.aggregator/.github/workflows/updateRelease.yml@master
12 changes: 0 additions & 12 deletions .github/workflows/verifyFreezePeriod.yml

This file was deleted.

19 changes: 14 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,23 @@
/*/*/bin/
/**/bin/
/*/*/target
*~
/.settings/
/.project
# maven
target/
.DS_Store
.polyglot.*
pom.tycho
*~
*.rej
*.bak
*.patch
javacore.*
heapdump.*
core.*
Snap.*
/.settings/
/.project
target/
.DS_Store
.polyglot.*
pom.tycho
.metadata
apiAnalyzer-workspace/
results/
2 changes: 1 addition & 1 deletion .mvn/extensions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<extension>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-build</artifactId>
<version>3.0.0</version>
<version>4.0.6</version>
</extension>
</extensions>
3 changes: 3 additions & 0 deletions .mvn/maven.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
-Pbuild-individual-bundles
-Dtycho.target.eager=true
-Dtycho.localArtifacts=ignore
69 changes: 0 additions & 69 deletions CONTRIBUTING

This file was deleted.

10 changes: 2 additions & 8 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,2 @@
Contributing to Platform UI
===================

Contributions to the Eclipse platform are most welcome. There are many ways to contribute,
from entering high quality bug reports, to contributing code or documentation changes.
For a complete guide, see the [How to Contribute][1] page on the team wiki.

[1]: http://wiki.eclipse.org/Platform_UI/How_to_Contribute
# Contributing to Eclipse Platform
See https://github.com/eclipse-platform/.github/blob/main/CONTRIBUTING.md
11 changes: 7 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pipeline {
options {
timeout(time: 60, unit: 'MINUTES')
timeout(time: 80, unit: 'MINUTES')
buildDiscarder(logRotator(numToKeepStr:'5'))
disableConcurrentBuilds(abortPrevious: true)
}
Expand All @@ -9,15 +9,16 @@ pipeline {
}
tools {
maven 'apache-maven-latest'
jdk 'openjdk-jdk17-latest'
jdk 'temurin-jdk17-latest'
}
stages {
stage('Build') {
steps {
wrap([$class: 'Xvnc', useXauthority: true]) {
sh """
mvn clean verify --batch-mode --fail-at-end -Dmaven.repo.local=$WORKSPACE/.m2/repository \
-Pbuild-individual-bundles -Pbree-libs -Papi-check \
-Pbree-libs -Papi-check -Pjavadoc \
-Dmaven.test.failure.ignore=true \
-Dcompare-version-with-baselines.skip=false \
-Dproject.build.sourceEncoding=UTF-8 \
-Dorg.slf4j.simpleLogger.showDateTime=true -Dorg.slf4j.simpleLogger.dateTimeFormat=HH:mm:ss.SSS \
Expand All @@ -29,7 +30,9 @@ pipeline {
always {
archiveArtifacts artifacts: '*.log,*/target/work/data/.metadata/*.log,*/tests/target/work/data/.metadata/*.log,apiAnalyzer-workspace/.metadata/*.log', allowEmptyArchive: true
junit '**/target/surefire-reports/TEST-*.xml'
publishIssues issues:[scanForIssues(tool: java()), scanForIssues(tool: mavenConsole())]
discoverGitReferenceBuild referenceJob: 'eclipse.platform.ui/master'
recordIssues publishAllIssues:false, ignoreQualityGate:true, tool: eclipse(name: 'Compiler and API Tools', pattern: '**/target/compilelogs/*.xml'), qualityGates: [[threshold: 1, type: 'DELTA', unstable: true]]
recordIssues publishAllIssues:false, tools: [mavenConsole(), javaDoc()]
}
}
}
Expand Down
19 changes: 0 additions & 19 deletions NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,3 @@ of the Eclipse Public License v. 2.0 which is available at
http://www.eclipse.org/legal/epl-2.0.

SPDX-License-Identifier: EPL-2.0

## Source Code

The project maintains the following source code repositories:

* https://github.com/eclipse-platform/eclipse.platform.common
* https://github.com/eclipse-platform/eclipse.platform.debug
* https://github.com/eclipse-platform/eclipse.platform
* https://github.com/eclipse-platform/eclipse.platform.releng.aggregator
* https://github.com/eclipse-platform/eclipse.platform.releng.buildtools
* https://github.com/eclipse-platform/eclipse.platform.releng
* https://github.com/eclipse-platform/eclipse.platform.resources
* https://github.com/eclipse-platform/eclipse.platform.swt
* https://github.com/eclipse-platform/eclipse.platform.swt.binaries
* https://github.com/eclipse-platform/eclipse.platform.team
* https://github.com/eclipse-platform/eclipse.platform.text
* https://github.com/eclipse-platform/eclipse.platform.ua
* https://github.com/eclipse-platform/eclipse.platform.ui
* https://github.com/eclipse-platform/eclipse.platform.ui.tools
Loading

0 comments on commit 03b85b8

Please sign in to comment.