Skip to content

Commit 3028e93

Browse files
authored
Merge pull request #40 from marcelblanarik/master
Build + status
2 parents 57190a7 + cccc7a0 commit 3028e93

2 files changed

Lines changed: 26 additions & 1 deletion

File tree

.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 }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# OpenDocument.ios
1+
# OpenDocument.ios ![](https://github.com/TomTasche/OpenDocument.ios/workflows/build/badge.svg)
22
It's Android's first OpenOffice Document Reader... for iOS!
33

44
## Setup

0 commit comments

Comments
 (0)