forked from ahrefs/bs-emotion
-
Notifications
You must be signed in to change notification settings - Fork 0
129 lines (107 loc) · 3.59 KB
/
bs-emotion-ppx.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
name: Build bs-emotion-ppx
on: [push, pull_request]
defaults:
run:
shell: bash
working-directory: bs-emotion-ppx
jobs:
test_and_build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/setup-node@v1
with:
node-version: 12
- uses: actions/checkout@v2
- run: npm install -g esy
- name: Try to restore install cache
uses: actions/cache@v1
with:
path: ~/.esy/source
key: source-${{ hashFiles('**/index.json') }}
- name: Install
run: esy install
- name: Print esy cache
id: print_esy_cache
run: |
cd ..
node .github/workflows/print_esy_cache.js
- name: Try to restore build cache
id: deps-cache-macos
uses: actions/cache@v1
with:
path: ${{ steps.print_esy_cache.outputs.esy_cache }}
key: build-${{ matrix.os }}-${{ hashFiles('**/index.json') }}
restore-keys: build-${{ matrix.os }}-
- name: Build
run: esy build
- name: "[Test] esy install"
run: esy install
working-directory: bs-emotion-ppx/test
- name: "[Test] esy build"
run: esy build
working-directory: bs-emotion-ppx/test
- name: "[Test] yarn install"
run: yarn install
working-directory: bs-emotion-ppx/test
- name: "[Test] yarn build"
run: yarn build
working-directory: bs-emotion-ppx/test
- name: Generate ppx binaries
run: esy release-static
- name: Upload artifacts ${{ matrix.os }}
# if: github.event_name != 'pull_request' && startsWith(github.ref, 'refs/tags/')
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.os }}
path: bs-emotion-ppx/_build/default/bin/BsEmotionPpx.exe
- name: Cleanup
run: |
# Cleanup build cache in case dependencies have changed
esy cleanup .
prepublish:
needs: test_and_build
# if: github.event_name != 'pull_request' && startsWith(github.ref, 'refs/tags/')
name: Prepublish ppx artifacts
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
- name: Download linux artifacts
if: success()
uses: actions/download-artifact@v2
with:
name: ubuntu-latest
path: bs-emotion-ppx/binaries/linux
- name: Download macOS artifacts
if: success()
uses: actions/download-artifact@v2
with:
name: macos-latest
path: bs-emotion-ppx/binaries/darwin
- name: Download windows artifacts
if: success()
uses: actions/download-artifact@v2
with:
name: windows-latest
path: bs-emotion-ppx/binaries/windows
- name: Move artifacts
if: success()
run: |
mkdir -p exe
ls -la binaries
ls -la binaries/darwin
mv binaries/darwin/BsEmotionPpx.exe exe/bs-emotion-ppx-darwin-x64.exe
cp exe/bs-emotion-ppx-darwin-x64.exe exe/bs-emotion-ppx-darwin-arm64.exe
mv binaries/windows/BsEmotionPpx.exe exe/bs-emotion-ppx-win-x64.exe
mv binaries/linux/BsEmotionPpx.exe exe/bs-emotion-ppx-linux-x64.exe
- name: Upload artifacts ${{ matrix.os }}
# if: github.event_name != 'pull_request' && startsWith(github.ref, 'refs/tags/')
uses: actions/upload-artifact@v2
with:
name: Release
path: bs-emotion-ppx