-
Notifications
You must be signed in to change notification settings - Fork 23
54 lines (49 loc) · 1.28 KB
/
test.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: Test
on:
push:
# thanks to https://izumisy.work/entry/2022/03/28/140644
jobs:
ubuntu-2204:
name: ubuntu-2204
runs-on: Ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Buildx
uses: docker/setup-buildx-action@v2
- uses: docker/build-push-action@v2
with:
file: Dockerfile
tags: tfhepp-2204
push: false
load: true
cache-from: type=gha,scope=buildx-${{ github.workflow }}-${{ github.job }}
cache-to: type=gha,mode=max,scope=buildx-${{ github.workflow }}-${{ github.job }}
- uses: addnab/docker-run-action@v3
with:
image: tfhepp-2204
run: /TFHEpp/build/test/test.sh
ubuntu-2404:
name: ubuntu-2404
runs-on: Ubuntu-latest
container:
image: ubuntu:24.04
steps:
- name: Install libraries
run: |
apt-get update
apt-get upgrade -y
apt-get install -y git build-essential g++ libomp-dev cmake git ninja-build
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: build
run: |
cmake . -Bbuild -GNinja -DCMAKE_BUILD_TYPE=Release -DENABLE_TEST=ON
cd build
ninja
- name: test
run: |
cd build
test/test.sh