Skip to content
This repository was archived by the owner on May 7, 2025. It is now read-only.

Commit 3d151f9

Browse files
Merge pull request #17 from datalogics-bhaugen/jenkins-build
Committed
2 parents 6eba8aa + 88a7123 commit 3d151f9

File tree

2 files changed

+43
-2
lines changed

2 files changed

+43
-2
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
SDKLauncher-iOS
2-
===============
1+
## SDKLauncher-iOS
32

43
A small iOS application to serve as a launcher/testbed for the Readium SDK.
4+
5+
## Jenkins build status
6+
7+
* master [![Build Status](http://jenkinsmaster.datalogics-cloud.com:8080/buildStatus/icon?job=Readium-SDK-Launcher-iOS-master)](http://jenkinsmaster.datalogics-cloud:8080/view/Readium-Launcher/job/Readium-SDK-Launcher-iOS-master/)
8+
* develop [![Build Status](http://jenkinsmaster.datalogics-cloud.com:8080/buildStatus/icon?job=Readium-SDK-Launcher-iOS-develop)](http://jenkinsmaster.datalogics-cloud:8080/view/Readium-Launcher/job/Readium-SDK-Launcher-iOS-develop/)

build.xml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!-- Build file for the Launcher iOS -->
3+
<project name="org.readium.LauncheriOS" default="build.all" basedir=".">
4+
5+
<property name="build.dir" value="${basedir}" />
6+
7+
<property name="project" value="SDKLauncher-iOS.xcodeproj"/>
8+
<property name="target" value="SDKLauncher-iOS"/>
9+
<property name="configuration" value="Release"/>
10+
11+
<!-- this builds Launcher-iOS -->
12+
<target name ="build.all" depends="init" description="Invoke xcodebuild to do a full build" >
13+
<exec executable="xcodebuild" spawn="false" failonerror="true">
14+
<arg value="-project" />
15+
<arg value="${project}" />
16+
<arg value="-target" />
17+
<arg value="${target}" />
18+
<arg value="-configuration" />
19+
<arg value="${configuration}" />
20+
</exec>
21+
</target>
22+
23+
<target name="init" >
24+
</target>
25+
26+
<target name="clean" depends="init" description="Clean the workspace">
27+
<exec executable="xcodebuild" spawn="false" dir="${build.dir}" failonerror="true">
28+
<arg value="-project" />
29+
<arg value="${project}" />
30+
<arg value="-target" />
31+
<arg value="${target}" />
32+
<arg value="-configuration" />
33+
<arg value="${configuration}" />
34+
</exec>
35+
<echo> Cleaned ${xcworkspace} ! </echo>
36+
</target>
37+
</project>

0 commit comments

Comments
 (0)