Skip to content

Commit

Permalink
added separate actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Valeriu Popa committed Dec 22, 2023
1 parent 2aa4c42 commit 210e431
Show file tree
Hide file tree
Showing 4 changed files with 195 additions and 163 deletions.
163 changes: 0 additions & 163 deletions .github/workflows/test.yml

This file was deleted.

65 changes: 65 additions & 0 deletions .github/workflows/test_0.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: Test_0

on:
push:
branches:
- main
- feature/*
pull_request:
workflow_dispatch:

env:
DEVELOPER_DIR: /Applications/Xcode_14.2.app/Contents/Developer

jobs:
test:
runs-on: macos-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Ruby & Bundle setup
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
bundler-cache: true

- name: Cocoapods cache
uses: actions/cache@v3
with:
path: Pods
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-pods-
- name: Cocoapods install
run: |
bundle exec fastlane run cocoapods
- name: Setup Java 11
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'

- name: WireMock setup
run: |
curl https://repo1.maven.org/maven2/com/github/tomakehurst/wiremock-jre8-standalone/2.27.0/wiremock-jre8-standalone-2.27.0.jar -o wiremock.jar -s
bundle exec iostrust add ./wiremock/cert/wiremock.crt
java -jar wiremock.jar --https-port 9099 --root-dir wiremock --https-keystore wiremock/cert/wiremock.jks --keystore-password password --verbose --global-response-templating &
- name: Format check
run: |
bundle exec fastlane format_check
- name: Test
run: |
bundle exec fastlane test_0
- name: Tests reports upload
uses: actions/upload-artifact@v3
if: failure()
with:
name: tests-reports
path: "fastlane/test_output"
65 changes: 65 additions & 0 deletions .github/workflows/test_1.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: Test_1

on:
push:
branches:
- main
- feature/*
pull_request:
workflow_dispatch:

env:
DEVELOPER_DIR: /Applications/Xcode_14.2.app/Contents/Developer

jobs:
test:
runs-on: macos-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Ruby & Bundle setup
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
bundler-cache: true

- name: Cocoapods cache
uses: actions/cache@v3
with:
path: Pods
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-pods-
- name: Cocoapods install
run: |
bundle exec fastlane run cocoapods
- name: Setup Java 11
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'

- name: WireMock setup
run: |
curl https://repo1.maven.org/maven2/com/github/tomakehurst/wiremock-jre8-standalone/2.27.0/wiremock-jre8-standalone-2.27.0.jar -o wiremock.jar -s
bundle exec iostrust add ./wiremock/cert/wiremock.crt
java -jar wiremock.jar --https-port 9099 --root-dir wiremock --https-keystore wiremock/cert/wiremock.jks --keystore-password password --verbose --global-response-templating &
- name: Format check
run: |
bundle exec fastlane format_check
- name: Test
run: |
bundle exec fastlane test_1
- name: Tests reports upload
uses: actions/upload-artifact@v3
if: failure()
with:
name: tests-reports
path: "fastlane/test_output"
65 changes: 65 additions & 0 deletions .github/workflows/test_2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: Test_2

on:
push:
branches:
- main
- feature/*
pull_request:
workflow_dispatch:

env:
DEVELOPER_DIR: /Applications/Xcode_14.2.app/Contents/Developer

jobs:
test:
runs-on: macos-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Ruby & Bundle setup
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
bundler-cache: true

- name: Cocoapods cache
uses: actions/cache@v3
with:
path: Pods
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-pods-
- name: Cocoapods install
run: |
bundle exec fastlane run cocoapods
- name: Setup Java 11
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'

- name: WireMock setup
run: |
curl https://repo1.maven.org/maven2/com/github/tomakehurst/wiremock-jre8-standalone/2.27.0/wiremock-jre8-standalone-2.27.0.jar -o wiremock.jar -s
bundle exec iostrust add ./wiremock/cert/wiremock.crt
java -jar wiremock.jar --https-port 9099 --root-dir wiremock --https-keystore wiremock/cert/wiremock.jks --keystore-password password --verbose --global-response-templating &
- name: Format check
run: |
bundle exec fastlane format_check
- name: Test
run: |
bundle exec fastlane test_2
- name: Tests reports upload
uses: actions/upload-artifact@v3
if: failure()
with:
name: tests-reports
path: "fastlane/test_output"

0 comments on commit 210e431

Please sign in to comment.