Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Müller <fmueller@owncloud.com>2022-05-20 02:42:49 +0300
committerHannah von Reth <vonreth@kde.org>2022-05-20 13:39:27 +0300
commit9522b98c3bf81a1ed0dce2db4ab02b2e3e404562 (patch)
treeb6fd9cc44aba969a2e0daf6baeaf3d3720f0ab20 /.github
parent50669170b6bcfde683e40485016b6842b31910c1 (diff)
Give jobs human-readable names
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/main.yml15
1 files changed, 10 insertions, 5 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 68a62b236..f8428e04e 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -14,24 +14,29 @@ defaults:
jobs:
# ------------------------------------------------------------------------------------------------------------------------------------------
build:
- name: Build ownCloud
- runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- - target: windows-msvc2019_64-cl
+ - name: Windows 64-bit cl
+ target: windows-msvc2019_64-cl
os: windows-latest
fetch-depth: 0
container:
- - target: macos-64-clang
+ - name: macOS 64-bit clang
+ target: macos-64-clang
os: macos-latest
fetch-depth: 1
container:
- - target: linux-64-gcc
+ - name: CentOS 7 64-bit gcc
+ target: linux-64-gcc
os: ubuntu-latest
container: kdeorg/centos7-craft
fetch-depth: 1
+ name: ${{ matrix.name }}
+
+ runs-on: ${{ matrix.os }}
+
env:
CRAFT_TARGET: ${{ matrix.target }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}