summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNicoleYarroch <nicole@livio.io>2020-06-02 15:07:33 -0400
committerNicoleYarroch <nicole@livio.io>2020-06-02 15:07:33 -0400
commit76cd39d63d1009134939779d07cac1df305014e2 (patch)
tree7465bb1bb33af4212204e2e807faba78825cb087 /.github
parent47d23d95c6cce423235deaed8dac8786ecb0b881 (diff)
downloadsdl_ios-76cd39d63d1009134939779d07cac1df305014e2.tar.gz
Fixed YAML formatting
Signed-off-by: NicoleYarroch <nicole@livio.io>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml171
1 files changed, 80 insertions, 91 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index a4ffc85f7..76a9f0866 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -2,98 +2,87 @@ name: SmartDeviceLink Tests
# This workflow is triggered on a push or pull request.
on:
- push:
- branches:
- - '*'
- tags-ignore: # Don't run workflow when a tag is created
- - v*
- pull_request:
- branches:
- - '*'
+ push:
+ branches:
+ - '*'
+ tags-ignore:
+ - v* # Don't run workflow when a tag is created
+ pull_request:
+ branches:
+ - '*'
env:
- PROJECT: 'SmartDeviceLink-iOS.xcodeproj'
- DESTINATION: 'platform=iOS Simulator,name=iPhone 11,OS=13.5'
+ PROJECT: 'SmartDeviceLink-iOS.xcodeproj'
+ DESTINATION: 'platform=iOS Simulator,name=iPhone 11,OS=13.5'
jobs:
- build:
- name: Build Example Apps
- runs-on: macOS-latest
-
- strategy:
- fail-fast: false
- matrix:
- scheme: ['SmartDeviceLink-Example-ObjC', 'SmartDeviceLink-Example-Swift']
-
- steps:
- - name: Checkout repository
- uses: actions/checkout@v2
- with:
- submodules: true
-
- # Print the available Xcode versions
- - name: Get available Xcode versions on the server
- run: ls /Applications | grep Xcode
-
- # Select the Xcode version (the platform/simulator/OS available for testing depend on the Xcode version)
- - name: Select Xcode version
- run: sudo xcode-select -switch /Applications/Xcode_11.5.app
-
- - name: Build
- run: |
- set -o pipefail && xcodebuild -scheme "${{ matrix.scheme }}" -destination "$DESTINATION" build | xcpretty --color --simple
-
- test:
- name: SmartDeviceLinkTests
- runs-on: macOS-latest
-
- strategy:
- fail-fast: false
- matrix:
- scheme: ['SmartDeviceLink']
-
- steps:
- - name: Checkout repository
- uses: actions/checkout@v2
- with:
- submodules: true
-
- - name: Checking for cached dependencies
- uses: actions/cache@v2
- id: carthage-cache
- with:
- path: Carthage
- key: ${{ runner.os }}-carthage-${{ hashFiles('**/Cartfile.resolved') }}
- restore-keys: |
- ${{ runner.os }}-carthage-
-
- - name: Installing dependencies
- if: steps.carthage-cache.outputs.cache-hit != 'true'
- run: |
- carthage bootstrap --no-use-binaries --platform iOS --cache-builds
-
- # Print the available Xcode versions
- - name: Get available Xcode versions on the server
- run: |
- ls /Applications | grep Xcode
-
- # Select the Xcode version (the platform/simulator/OS available for testing depend on the Xcode version)
- - name: Select Xcode version
- run: |
- sudo xcode-select -switch /Applications/Xcode_11.5.app
-
- # Split build into build-only and test-only as it is faster than building and running in one step
- - name: Building unit tests
- run: |
- xcodebuild build-for-testing -project "$PROJECT" -destination "$DESTINATION" -scheme "${{ matrix.scheme }}"
-
- - name: Running unit tests
- run: |
- set -o pipefail && xcodebuild test-without-building -project "$PROJECT" -destination "$DESTINATION" -scheme "${{ matrix.scheme }}" -configuration Debug ONLY_ACTIVE_ARCH=NO RUN_CLANG_STATIC_ANALYZER=NO GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES ENABLE_TESTABILITY=YES | xcpretty --color --simple
-
- # Upload coverage reports to Codecov
- - name: Codecov
- uses: codecov/codecov-action@v1
- with:
- file: ./codecov.yml
- flags: unittests
+ build:
+ name: Build Example Apps
+ runs-on: macOS-latest
+ strategy:
+ fail-fast: false
+ matrix:
+ scheme: ['SmartDeviceLink-Example-ObjC', 'SmartDeviceLink-Example-Swift']
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v2
+ with:
+ submodules: true
+
+ # Print the available Xcode versions
+ - name: Get available Xcode versions on the server
+ run: ls /Applications | grep Xcode
+
+ # Select the Xcode version (the platform/simulator/OS available for testing depend on the Xcode version)
+ - name: Select Xcode version
+ run: sudo xcode-select -switch /Applications/Xcode_11.5.app
+
+ - name: Build
+ run: set -o pipefail && xcodebuild -scheme "${{ matrix.scheme }}" -destination "$DESTINATION" build | xcpretty --color --simple
+
+ test:
+ name: SmartDeviceLinkTests
+ runs-on: macOS-latest
+ strategy:
+ fail-fast: false
+ matrix:
+ scheme: ['SmartDeviceLink']
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v2
+ with:
+ submodules: true
+
+ - name: Checking for cached dependencies
+ uses: actions/cache@v2
+ id: carthage-cache
+ with:
+ path: Carthage
+ key: ${{ runner.os }}-carthage-${{ hashFiles('**/Cartfile.resolved') }}
+ restore-keys: ${{ runner.os }}-carthage-
+
+ - name: Installing dependencies
+ if: steps.carthage-cache.outputs.cache-hit != 'true'
+ run: carthage bootstrap --no-use-binaries --platform iOS --cache-builds
+
+ # Print the available Xcode versions
+ - name: Get available Xcode versions on the server
+ run: ls /Applications | grep Xcode
+
+ # Select the Xcode version (the platform/simulator/OS available for testing depend on the Xcode version)
+ - name: Select Xcode version
+ run: sudo xcode-select -switch /Applications/Xcode_11.5.app
+
+ # Split build into build-only and test-only as it is faster than building and running in one step
+ - name: Building unit tests
+ run: xcodebuild build-for-testing -project "$PROJECT" -destination "$DESTINATION" -scheme "${{ matrix.scheme }}"
+
+ - name: Running unit tests
+ run: set -o pipefail && xcodebuild test-without-building -project "$PROJECT" -destination "$DESTINATION" -scheme "${{ matrix.scheme }}" -configuration Debug ONLY_ACTIVE_ARCH=NO RUN_CLANG_STATIC_ANALYZER=NO GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES ENABLE_TESTABILITY=YES | xcpretty --color --simple
+
+ # Upload coverage reports to Codecov
+ - name: Codecov
+ uses: codecov/codecov-action@v1
+ with:
+ file: ./codecov.yml
+ flags: unittests