-
Notifications
You must be signed in to change notification settings - Fork 4
55 lines (46 loc) · 1.36 KB
/
ci.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
name: fastplong ci
on:
pull_request:
branches:
- main
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-24.04
- macos-13
- macos-14
runs-on: ${{ matrix.os }}
steps:
- name: checkout scm
uses: actions/checkout@v3
- name: Get number of CPU cores
uses: SimenB/github-actions-cpu-cores@v1
id: cpu-cores
- name: install build dependencies (Ubuntu)
run: sudo apt update && sudo apt install -y build-essential nasm libgtest-dev libhwy-dev libisal-dev
if: runner.os == 'Linux'
- name: install build dependencies (MacOS)
run: brew install automake autoconf coreutils nasm highway googletest
if: runner.os == 'macOS'
- name: get deflate
uses: actions/checkout@v3
with:
repository: ebiggers/libdeflate
path: src/libs/deflate
ref: v1.22
- name: build deflate
run: |
cd src/libs/deflate
cmake -B build
cmake --build build -j ${{ steps.cpu-cores.outputs.count }}
sudo cmake --install build
cd -
- name: make fastplong
run: bash -c 'make -j $(nproc)'
- name: make test
run: bash -c 'make -j $(nproc) test'
- name: test
run: chmod a+x ./fastplong && ./fastplong --version