forked from loafle/openapi-generator-original
* [Swift6] create Swift6 generator * [Swift6] create Swift6 generator * Update vapor integration * Update bitrise stack to Xcode 16 * [Swift6] tryped throws * [Swift6] tryped throws * [Swift6] combine deferred and api static method * [Swift6] update readme * [Swift6] fix some errors * [Swift6] fix some errors * [Swift6] fix some errors * [Swift6] update docs * [Swift6] update docs * Use multiline comments for examples in csharp generator (#19079) * multi * gen * Uncomment File::deleteOnExit (#19624) * [Core/Rust Server] Check references in additionalProperties correctly when checking freeForm status (#19605) * Check references in additionalProperties correctly Handle references in additionalProperties correctly when determining free-form status * Update samples * [Rust Server] Handle arrays in forms (#19625) * [Rust Server] Handle arrays in forms correctly * [Rust Server] Add tests * Update samples * [Swift6] fix CI * [Swift6] fix CI * [Swift6] fix CI * [Swift6] fix CI --------- Co-authored-by: Liri S <reallyliri@gmail.com> Co-authored-by: Beppe Catanese <1771700+gcatanese@users.noreply.github.com> Co-authored-by: Richard Whitehouse <git@richardwhiuk.com> Co-authored-by: William Cheng <wing328hk@gmail.com>
52 lines
1.1 KiB
YAML
52 lines
1.1 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@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 Swift6 tests
|
|
inputs:
|
|
- content: |
|
|
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
./samples/client/petstore/swift6/swift6_test_all.sh
|
|
- script@1.2.0:
|
|
title: Run Swift5 tests
|
|
inputs:
|
|
- content: |
|
|
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
./samples/client/petstore/swift5/swift5_test_all.sh
|
|
- script@1.2.0:
|
|
title: Run swift-combine tests
|
|
inputs:
|
|
- content: |
|
|
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
./samples/client/petstore/swift-combine/swift-combine_test_all.sh
|
|
|
|
meta:
|
|
bitrise.io:
|
|
stack: osx-xcode-16.0.x
|