mirror of
https://github.com/jlengrand/openapi-generator.git
synced 2026-05-13 00:21:18 +00:00
* [feature] Log "debounce" filter to remove spam. * [log] slf4j-simple should be optional This also sets the default log level to ERROR during CI builds for many mvn invocations. This should reduce noise in the logs. * [log] Rely only on mvn loglevel=error for now * [cli] Clean up unused dependency * [log] Change level to error/warn in more CI
80 lines
1.8 KiB
YAML
80 lines
1.8 KiB
YAML
---
|
|
format_version: '8'
|
|
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
|
|
project_type: other
|
|
trigger_map:
|
|
- push_branch: "*"
|
|
workflow: primary
|
|
- pull_request_source_branch: "*"
|
|
workflow: primary
|
|
workflows:
|
|
primary:
|
|
steps:
|
|
- git-clone@4.0.17: {}
|
|
- brew-install@0.10.2:
|
|
inputs:
|
|
- packages: maven
|
|
- script@1.1.5:
|
|
title: Install Cocoapods
|
|
inputs:
|
|
- content: |
|
|
#!/usr/bin/env bash
|
|
|
|
sudo gem install cocoapods
|
|
- script@1.1.5:
|
|
inputs:
|
|
- content: |
|
|
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
mvn package -Dorg.slf4j.simpleLogger.defaultLogLevel=error
|
|
title: Build openapi-generator
|
|
- script@1.1.5:
|
|
title: Update Swift4 samples
|
|
inputs:
|
|
- content: |
|
|
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
sh bin/swift4-all.sh
|
|
- script@1.1.5:
|
|
title: Run Swift4 tests
|
|
inputs:
|
|
- content: |
|
|
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
./samples/client/petstore/swift4/swift4_test_all.sh
|
|
./samples/client/test/swift4/swift4_test_all.sh
|
|
- script@1.1.5:
|
|
title: Update Swift5 samples
|
|
inputs:
|
|
- content: |
|
|
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
sh bin/swift5-all.sh
|
|
- script@1.1.5:
|
|
title: Run Swift5 tests
|
|
inputs:
|
|
- content: |
|
|
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
./samples/client/petstore/swift5/swift5_test_all.sh
|
|
./samples/client/test/swift5/swift5_test_all.sh
|
|
- script@1.1.5:
|
|
title: Run all bin scripts
|
|
inputs:
|
|
- content: |-
|
|
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
./bin/run-all-petstore
|