mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-19 00:11:16 +00:00
82 lines
2.8 KiB
HTML
82 lines
2.8 KiB
HTML
<header>
|
|
<a class="logo float-left" href="/"></a>
|
|
<a class="menu-item settings float-right" href="/profile"></a>
|
|
<a class="menu-item users float-right" href="/users" ng-if="user.admin"></a>
|
|
<a class="menu-item help float-right" href="http://readme.drone.io" target="_blank"></a>
|
|
<a class="menu-item user-name float-right" href="/profile">{{ "+"+user.login }}</a>
|
|
</header>
|
|
|
|
<div class="toolbar">
|
|
|
|
<div class="breadcrumb" style="position:relative;top:0px;">
|
|
<a ng-href="/{{ repo.full_name }}" class="icon icon-home"></a>
|
|
<a ng-href="/{{ repo.full_name }}">{{ repo.owner }} / {{ repo.name }}</a>
|
|
<span class="spacer"></span>
|
|
<a ng-href="/{{ repo.full_name }}/{{ build.sequence }}">{{ build.sequence }}</a>
|
|
<span class="spacer"></span>
|
|
<a href="#">{{ task.sequence }}</a>
|
|
</div>
|
|
|
|
<div class="menu">
|
|
<a href="settings.html" class="icon icon-settings"></a>
|
|
<a ng-href="/{{ repo.full_name }}/edit" class="nav-item settings float-right"></a>
|
|
<button ng-click="watch(repo)" ng-if="!repo.starred" class="nav-item star float-right"></button>
|
|
<button ng-click="unwatch(repo)" ng-if="repo.starred" class="nav-item unstar float-right"></button>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<article>
|
|
|
|
<section class="commit-section">
|
|
<div class="commit-status">
|
|
<div class="status {{ task.state }}" ng-if="task"></div>
|
|
<div class="status {{ build.state }}" ng-if="!task"></div>
|
|
</div>
|
|
<div class="commit-meta">
|
|
<h3>{{ build.message }}</h3>
|
|
<p><strong>{{ build.author }}</strong> pushed <strong>{{ build.sha.substr(0,8) }}</strong> to <strong>{{ build.branch }}</strong></p>
|
|
{{ build.exit_code }}
|
|
{{ build.started_at | fromNow }}
|
|
<span class="octicon octicon-git-commit">{{ build.sha.substr(0,8) }}</span>
|
|
<span class="octicon octicon-git-branch">{{ build.branch }}</span>
|
|
<span class="octicon octicon-clock" style="background:#FFF;">{{ build.duration | toDuration }} duration</span>
|
|
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<section ng-if="build.builds.length > 1">
|
|
|
|
<a class="row build-row sub-build-row" ng-repeat="task in build.builds" ng-href="{{ repo.full_name }}/{{ build.sequence }}/{{ task.sequence }}">
|
|
<div>
|
|
<div ng-class="[ 'build-num', build.state ]">{{task.sequence}}</div>
|
|
</div>
|
|
<div>
|
|
<h3>
|
|
<div ng-repeat="(key, value) in task.environment">
|
|
{{ key.toUpperCase() }}={{ value }}
|
|
</div>
|
|
</h3>
|
|
</div>
|
|
</a>
|
|
|
|
|
|
|
|
|
|
</section>
|
|
|
|
<pre id="term" ng-if="task && task.state !== 'pending'"></pre>
|
|
|
|
|
|
|
|
<button class="fab" ng-if="build.state === 'running'" ng-click="tail()"></button>
|
|
</article>
|
|
|
|
|
|
|
|
<button ng-if="build.state !== 'pending' && build.state !== 'running'" ng-click="restart()">Restart</button>
|
|
<button ng-if="build.state === 'pending' || build.state === 'running'" ng-click="cancel()">Cancel</button>
|