-
Notifications
You must be signed in to change notification settings - Fork 1
51 lines (50 loc) · 1.46 KB
/
macos.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: "macOS CI"
on:
push:
branches:
- master
- blueprint
workflow_dispatch:
jobs:
build:
strategy:
matrix:
os: [macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: vicr123/libcontemporary/brew-universalinstall@actions
name: "Install Dependencies"
with:
packages: "qt:cmake:ninja:utf8proc"
- uses: vicr123/libcontemporary/build-project@actions
name: "Build libcontemporary"
with:
project: "vicr123/libcontemporary"
commitish: "blueprint"
- uses: vicr123/libcontemporary/build-project@actions
name: "Build contemporary-theme"
with:
project: "vicr123/contemporary-theme"
commitish: "blueprint"
- uses: vicr123/libcontemporary/build-project@actions
name: "Build tttermwidget"
with:
project: "vicr123/tttermwidget"
commitish: "master"
- uses: actions/checkout@v1
with:
submodules: 'recursive'
- uses: vicr123/libcontemporary/build-project@actions
name: "Build project"
with:
project: "."
- uses: vicr123/libcontemporary/deploy-project@actions
id: deploy
name: "Deploy project"
with:
subdir: "terminal"
- uses: actions/upload-artifact@v1
name: Upload Artifact to GitHub Actions
with:
name: "theTerminal-macOS"
path: ${{ steps.deploy.outputs.package }}