mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-12 03:26:30 +00:00
62 lines
2.4 KiB
HTML
62 lines
2.4 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 }}/{{ build.sequence }}" 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 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>
|
|
|
|
<div ng-repeat="(key, value) in task.environment">
|
|
{{ key.toUpperCase() }}={{ value }}
|
|
</div>
|
|
</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>
|