Skip to content

Commit

Permalink
ci: re-enable iOS jobs (#82)
Browse files Browse the repository at this point in the history
These were accidentally disabled in envoyproxy/envoy-mobile@50f3765.

Signed-off-by: Michael Rebello <[email protected]>
Signed-off-by: JP Simard <[email protected]>
  • Loading branch information
rebello95 authored and jpsim committed Nov 28, 2022
1 parent f06f0b4 commit 72abd17
Showing 1 changed file with 54 additions and 54 deletions.
108 changes: 54 additions & 54 deletions mobile/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,57 +29,57 @@ jobs:
submodules: true
- script: swiftlint lint --strict
displayName: 'Run SwiftLint'
# - job: iOS_dist
# timeoutInMinutes: 360
# pool:
# vmImage: 'macos-10.14'
# steps:
# - checkout: self
# submodules: true
# - script: ./envoy/ci/mac_ci_setup.sh
# displayName: 'Install dependencies'
# - script: bazel build --config=ios //:ios_dist
# displayName: 'Build Envoy.framework distributable'
# - task: PublishPipelineArtifact@0
# displayName: 'Publish Envoy.framework distributable'
# inputs:
# artifactName: 'Envoy.framework'
# targetPath: 'dist/Envoy.framework'
# - job: iOS_objc
# dependsOn: iOS_dist
# timeoutInMinutes: 360
# pool:
# vmImage: 'macos-10.14'
# steps:
# - checkout: self
# submodules: true
# - script: ./envoy/ci/mac_ci_setup.sh
# displayName: 'Install dependencies'
# - script: mkdir -p dist/Envoy.framework
# displayName: 'Create directory for distributable'
# - task: DownloadPipelineArtifact@0
# displayName: 'Download Envoy.framework distributable'
# inputs:
# artifactName: Envoy.framework
# targetPath: ./dist/Envoy.framework
# - script: bazel build --config=ios //examples/objective-c/hello_world:app
# displayName: 'Build objective-c app'
# - job: iOS_swift
# dependsOn: iOS_dist
# timeoutInMinutes: 360
# pool:
# vmImage: 'macos-10.14'
# steps:
# - checkout: self
# submodules: true
# - script: ./envoy/ci/mac_ci_setup.sh
# displayName: 'Install dependencies'
# - script: mkdir -p dist/Envoy.framework
# displayName: 'Create directory for distributable'
# - task: DownloadPipelineArtifact@0
# displayName: 'Download Envoy.framework distributable'
# inputs:
# artifactName: Envoy.framework
# targetPath: ./dist/Envoy.framework
# - script: bazel build --config=ios //examples/swift/hello_world:app
# displayName: 'Build swift app'
- job: iOS_dist
timeoutInMinutes: 360
pool:
vmImage: 'macos-10.14'
steps:
- checkout: self
submodules: true
- script: ./envoy/ci/mac_ci_setup.sh
displayName: 'Install dependencies'
- script: bazel build --config=ios //:ios_dist
displayName: 'Build Envoy.framework distributable'
- task: PublishPipelineArtifact@0
displayName: 'Publish Envoy.framework distributable'
inputs:
artifactName: 'Envoy.framework'
targetPath: 'dist/Envoy.framework'
- job: iOS_objc
dependsOn: iOS_dist
timeoutInMinutes: 360
pool:
vmImage: 'macos-10.14'
steps:
- checkout: self
submodules: true
- script: ./envoy/ci/mac_ci_setup.sh
displayName: 'Install dependencies'
- script: mkdir -p dist/Envoy.framework
displayName: 'Create directory for distributable'
- task: DownloadPipelineArtifact@0
displayName: 'Download Envoy.framework distributable'
inputs:
artifactName: Envoy.framework
targetPath: ./dist/Envoy.framework
- script: bazel build --config=ios //examples/objective-c/hello_world:app
displayName: 'Build objective-c app'
- job: iOS_swift
dependsOn: iOS_dist
timeoutInMinutes: 360
pool:
vmImage: 'macos-10.14'
steps:
- checkout: self
submodules: true
- script: ./envoy/ci/mac_ci_setup.sh
displayName: 'Install dependencies'
- script: mkdir -p dist/Envoy.framework
displayName: 'Create directory for distributable'
- task: DownloadPipelineArtifact@0
displayName: 'Download Envoy.framework distributable'
inputs:
artifactName: Envoy.framework
targetPath: ./dist/Envoy.framework
- script: bazel build --config=ios //examples/swift/hello_world:app
displayName: 'Build swift app'

0 comments on commit 72abd17

Please sign in to comment.