-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (42 loc) · 1.24 KB
/
build.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
name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: haskell/actions/setup@v1
with:
ghc-version: '8.6.3'
enable-stack: true
stack-version: 'latest'
- name: Cache
uses: actions/cache@v1
env:
cache-name: cache-stack
with:
path: ~/.stack
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/*.cabal') }}-${{ hashFiles('**/stack.yaml') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Build dependencies
run: |
stack --no-terminal build --test --only-dependencies
- name: Build
run: |
mkdir dist
stack --no-terminal build --test --no-run-tests --copy-bins --local-bin-path dist
- name: Test
run: stack --no-terminal build --test
- name: Zip
run: |
cd dist
tar czvf memcached-replicator-linux.tar.gz memcached-replicator
- name: Archive production artifacts
uses: actions/upload-artifact@v2
with:
name: memcached-replicator-linux.tar.gz
path: |
dist/memcached-replicator-linux.tar.gz