1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00
Radarr/.circleci/config.yml

41 lines
1.2 KiB
YAML
Raw Normal View History

2018-02-12 16:37:33 +01:00
version: 2
jobs:
build:
docker:
- image: gallileo/radarr-cci-primary:4.8
2018-02-12 16:37:33 +01:00
steps:
- checkout
- run: git submodule update --init --recursive
- run:
2018-02-12 17:37:11 +01:00
name: Clean Build
command: ./build.sh Clean
- run:
name: Restore Nuget
command: ./build.sh NugetMono
2018-02-12 16:37:33 +01:00
- run:
name: Build
command: ./build.sh Build
- run:
name: Gulp
command: ./build.sh Gulp
- run:
name: Package
command: ./build.sh Package
- run:
2018-02-12 17:33:14 +01:00
name: Preparing Tests
command: mkdir _tests/reports
2018-02-12 16:37:33 +01:00
- run:
name: Testing
command: ./test.sh Linux Unit
- store_test_results:
path: _tests/reports/
- store_artifacts:
path: _output
- store_artifacts:
path: _output_mono
- store_artifacts:
path: _output_osx
- store_artifacts:
path: _output_osx_app