File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 }}
Original file line number Diff line number Diff line change 1- # OpenDocument.ios
1+ # OpenDocument.ios ![ ] ( https://github.com/TomTasche/OpenDocument.ios/workflows/build/badge.svg )
22It's Android's first OpenOffice Document Reader... for iOS!
33
44## Setup
You can’t perform that action at this time.
0 commit comments