Skip to content

Commit 7c30841

Browse files
authored
Merge pull request #45 from TomTasche/development
1.13
2 parents 6f935c1 + d320abf commit 7c30841

File tree

8 files changed

+766
-60
lines changed

8 files changed

+766
-60
lines changed

.github/workflows/ios_main.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: build
2+
on: [push]
3+
4+
jobs:
5+
build:
6+
name: build
7+
runs-on: macos-latest
8+
strategy:
9+
matrix:
10+
destination: ['platform=iOS Simulator,name=iPhone 11']
11+
scheme: [OpenDocumentReader]
12+
steps:
13+
- uses: actions/checkout@v1
14+
- name: Checkout submodule
15+
run: git submodule update --init --recursive
16+
- name: Install pods
17+
run: pod install
18+
- name: Run build.sh
19+
run: bash build.sh
20+
- name: Build
21+
run: |
22+
xcodebuild clean build -workspace OpenDocumentReader.xcworkspace -scheme "${scheme}" -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO
23+
env:
24+
destination: ${{ matrix.destination }}
25+
scheme: ${{ matrix.scheme }}

OpenDocument.core

0 commit comments

Comments
 (0)