Update the run logic of iOS jobs (#2118)
Summary: This PR updates the logic when these iOS jobs should be run. This change just makes it run for pushes to iOS folders and xplat c++ folders. ## Changelog - Update the GH action. Pull Request resolved: https://github.com/facebook/flipper/pull/2118 Test Plan: Note that no iOS job is run. Reviewed By: mweststrate Differential Revision: D27395681 Pulled By: priteshrnandgaonkar fbshipit-source-id: 37a7c2fb9b3fdfa22307ac5e7403364bfeb0a384
This commit is contained in:
committed by
Facebook GitHub Bot
parent
1d67dd8a9f
commit
d22e893169
11
.github/workflows/iOS-Sample.yml
vendored
11
.github/workflows/iOS-Sample.yml
vendored
@@ -1,5 +1,14 @@
|
|||||||
name: Build iOS apps
|
name: Build iOS apps
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
push:
|
||||||
|
paths:
|
||||||
|
- "iOS/**"
|
||||||
|
- "xplat/**"
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- "iOS/**"
|
||||||
|
- "xplat/**"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-sample-objc:
|
build-sample-objc:
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
|
|||||||
10
.github/workflows/iOS-pod-lint.yml
vendored
10
.github/workflows/iOS-pod-lint.yml
vendored
@@ -1,5 +1,13 @@
|
|||||||
name: Validate Podspecs
|
name: Validate Podspecs
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
push:
|
||||||
|
paths:
|
||||||
|
- "iOS/**"
|
||||||
|
- "xplat/**"
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- "iOS/**"
|
||||||
|
- "xplat/**"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint-flipperkit_pod:
|
lint-flipperkit_pod:
|
||||||
|
|||||||
Reference in New Issue
Block a user