mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-12 12:40:53 +00:00
* [CI] try to fix bitrise deprecation warning * [CI] try to fix bitrise deprecation warning * skip tests * simply run tests --------- Co-authored-by: Bruno Coelho <4brunu@gmail.com>
34 lines
701 B
YAML
34 lines
701 B
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@8.0.0: {}
|
|
- script@1.2.0:
|
|
title: Install Cocoapods
|
|
inputs:
|
|
- content: |
|
|
#!/usr/bin/env bash
|
|
|
|
sudo gem install cocoapods
|
|
- script@1.2.0:
|
|
title: Run Swift5 tests
|
|
inputs:
|
|
- content: |
|
|
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
./samples/client/petstore/swift5/swift5_test_all.sh
|
|
|
|
meta:
|
|
bitrise.io:
|
|
stack: osx-xcode-14.2.x
|