-
Notifications
You must be signed in to change notification settings - Fork 15
36 lines (30 loc) · 844 Bytes
/
Copy pathci.yml
File metadata and controls
36 lines (30 loc) · 844 Bytes
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
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: install build dependencies (Ubuntu)
run: sudo apt update && sudo apt install -y build-essential libgtest-dev libhwy-dev libisal-dev libdeflate-dev
if: runner.os == 'Linux'
- name: install build dependencies (MacOS)
run: brew install highway googletest isa-l libdeflate
if: runner.os == 'macOS'
- name: make fastplong
run: make -j
- name: make test
run: make -j test
- name: test
run: chmod a+x ./fastplong && ./fastplong --version