Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Just an automation script #1

Open
wants to merge 2 commits into
base: JenkinsPipeline
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Live HPI build

on:
push:
branches:
- JenkinsPipeline

jobs:
linux:
strategy:
fail-fast: false
matrix:
os: [ubuntu-16.04]
runs-on: ${{ matrix.os }}
steps:
- name: Check out source
uses: actions/checkout@v1
- name: Setup Java
uses: actions/setup-java@v1
with:
java-version: 1.8
java-package: jdk
architecture: x64
- name: Build HPI
run: mvn clean compile package hpi:hpi -Dmaven.javadoc.skip=true -DskipTests=true
- name: Archive payload
uses: actions/upload-artifact@master
with:
name: Compiled plugin
path: target/kpp-management-plugin.*
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<name>Keychains and Provisioning Profiles Management for Pipeline</name>
<description>This Jenkins plugin integrates a keychains and provisioning profiles managment for iOS and OSX projects build on a mac.</description>
<artifactId>kpp-management-plugin</artifactId>
<version>1.0.1-SNAPSHOT</version>
<version>1.0.2-SNAPSHOT</version>
<packaging>hpi</packaging>
<url>http://wiki.jenkins-ci.org/display/JENKINS/Keychains+and+Provisioning+Profiles+Plugin</url>
<scm>
Expand Down Expand Up @@ -56,7 +56,7 @@
<plugin>
<groupId>org.jenkins-ci.tools</groupId>
<artifactId>maven-hpi-plugin</artifactId>
<version>1.95</version>
<version>2.1</version>
</plugin>
</plugins>
</build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ THE SOFTWARE.

<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form">
<l:layout permission="${app.ADMINISTER}" norefresh="true" title="test">
<l:layout permission="${app.ADMINISTER}" norefresh="true" title="${%headline}">

<st:include page="sidepanel.jelly" it="${app}"/>

Expand Down