Remove circleci in favour of native github actions (#1856)

Signed-off-by: Marinov Avgustin <Avgustin.Marinov@bosch.com>
This commit is contained in:
Avgustin Marinov
2024-10-04 12:27:35 +03:00
committed by GitHub
parent 20ebd9ba8d
commit ac1f17b220
2 changed files with 0 additions and 80 deletions

View File

@@ -1,61 +0,0 @@
#
# Copyright (c) 2018 Bosch Software Innovations GmbH and others
#
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
#
version: 2
jobs:
build:
working_directory: ~/hawkBit
docker:
- image: cimg/openjdk:17.0.11
auth:
username: $DOCKERHUB_USER
password: $DOCKERHUB_ACCESSTOKEN
environment:
_JAVA_OPTIONS: "-Xms512m -Xmx1024m"
- image: rabbitmq:3-management
auth:
username: $DOCKERHUB_USER
password: $DOCKERHUB_ACCESSTOKEN
environment:
RABBITMQ_DEFAULT_VHOST: "/"
steps:
- checkout
- restore_cache:
key: circleci-hawkbit-{{ checksum "pom.xml" }}
- run:
name: Install dependencies without testing
command: mvn install --batch-mode -DskipTests
- run:
name: Run tests incl. license check
command: './.circleci/run-qa.sh'
- run:
name: Record test results
command: mkdir -p testresults/jUnit && find . -type f -regex ".*/target/surefire-reports/.*xml" -exec cp {} testresults/jUnit/ \;
- store_test_results:
path: testresults
- store_artifacts:
path: pom.xml
destination: pom.xml
- save_cache:
paths:
- ~/.m2
key: circleci-hawkbit-{{ checksum "pom.xml" }}

View File

@@ -1,19 +0,0 @@
#!/bin/sh
#
# Copyright (c) 2015 Bosch Software Innovations GmbH and others
#
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
#
#echo "$CIRCLE_PULL_REQUEST pull request"
# Run SonarQube only for master branch
if [ $CIRCLE_BRANCH = master ] ; then
mvn verify license:check javadoc:javadoc org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.branch.name=eclipse-master -Dsonar.login=$SONAR_ACCESS_TOKEN --batch-mode
else
mvn verify license:check javadoc:javadoc --batch-mode
fi