forked from loafle/openapi-generator-original
* [swift][client] Remove old objc samples * [swift][client] Update CI to use Xcode 26 * Revert "[swift][client] Remove old objc samples" This reverts commit b50189968b2cea2aad0ac8494cfcc458b36e9a4a.
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-26.2.x
|