Skip to content

Commit

Permalink
added CircleCi configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
MasWag committed Sep 15, 2021
1 parent 02d0957 commit 9ba0417
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
version: 2.1
orbs:
matlab: mathworks/[email protected]
openjdk-install: cloudesire/[email protected]
jobs:
build:
working_directory: ~/FalCAuN
steps:
- checkout
- run:
command: |
wget https://github.com/Meijuh/ltsmin/releases/download/v3.1.0/ltsmin-v3.1.0-linux.tgz
tar xvf ltsmin-v3.1.0-linux.tgz
sudo cp -r v3.1.0/* /usr
- openjdk-install/openjdk
- matlab/install
- restore_cache:
key: FalCAuN-{{ checksum "pom.xml" }}
- run: mvn dependency:go-offline
- store_artifacts:
path: target
- save_cache:
paths:
- ~/.m2
key: FalCAuN-{{ checksum "pom.xml" }}
- run: mvn test -DskipTests=false
- store_test_results:
path: target/surefire-reports

0 comments on commit 9ba0417

Please sign in to comment.