mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
38 lines
1.1 KiB
YAML
38 lines
1.1 KiB
YAML
version: 2
|
|
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: gallileo/radarr-cci-primary:4.8
|
|
steps:
|
|
- checkout
|
|
- run: git submodule update --init --recursive
|
|
- run:
|
|
name: Prepare Build
|
|
command: ./build.sh PrepareBuild
|
|
- run:
|
|
name: Build
|
|
command: ./build.sh Build
|
|
- run:
|
|
name: Gulp
|
|
command: ./build.sh Gulp
|
|
- run:
|
|
name: Package
|
|
command: ./build.sh Package
|
|
- run:
|
|
name: Preparing Tests
|
|
command: mkdir _tests/reports
|
|
- 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
|