-
Notifications
You must be signed in to change notification settings - Fork 164
139 lines (110 loc) · 3.4 KB
/
external.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
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
130
131
132
133
134
135
136
137
138
139
## Copyright 2024 Intel Corporation
## SPDX-License-Identifier: Apache-2.0
name: Linux
on:
push:
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions: read-all
jobs:
build-cpu-rocky-8:
runs-on: ubuntu-latest
container:
image: rockylinux:8
steps:
- name: Install packages
run: |
echo "Installing build dependencies..."
dnf update -y
dnf group install "Development Tools" -y
dnf install -y git-lfs cmake wget tbb-devel
mkdir /tmp/deps
cd /tmp/deps
wget https://github.com/ispc/ispc/releases/download/v1.24.0/ispc-v1.24.0-linux.tar.gz
tar -xvf ispc-v1.24.0-linux.tar.gz
echo "PATH=$PATH:`pwd`/ispc-v1.24.0-linux/bin" >> $GITHUB_ENV
- name: Checkout Repository
uses: actions/checkout@v4
with:
submodules: true
lfs: true
- name: Build
run: |
mkdir build
cd build
cmake -D CMAKE_INSTALL_PREFIX=`pwd`/install -D OIDN_INSTALL_DEPENDENCIES=ON -D OIDN_ZIP_MODE=ON ..
make -j$(nproc) install
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: build-cpu-rocky-8
path: build/install
test-cpu-rocky-8:
needs: build-cpu-rocky-8
runs-on: ubuntu-latest
container:
image: rockylinux:8
steps:
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: build-cpu-rocky-8
- name: Test
run: |
# Adding execution bit to binaries is needed since upload/download GHA is using zip compression
# and it can't preserve files permissions - https://github.com/actions/upload-artifact/issues/38
chmod +x ./bin/*
./bin/oidnTest
./bin/oidnBenchmark -v 1
build-cpu-ubuntu-2204:
runs-on: ubuntu-latest
container:
image: ubuntu:22.04
steps:
- name: Install packages
run: |
echo "Installing build dependencies..."
apt update
apt upgrade -y
apt install build-essential cmake git-lfs wget python3 libtbb2-dev -y
mkdir /tmp/deps
cd /tmp/deps
wget https://github.com/ispc/ispc/releases/download/v1.24.0/ispc-v1.24.0-linux.tar.gz
tar -xvf ispc-v1.24.0-linux.tar.gz
echo "PATH=$PATH:`pwd`/ispc-v1.24.0-linux/bin" >> $GITHUB_ENV
- name: Checkout Repository
uses: actions/checkout@v4
with:
submodules: true
lfs: true
- name: Build
run: |
mkdir build
cd build
cmake -D CMAKE_INSTALL_PREFIX=`pwd`/install -D OIDN_INSTALL_DEPENDENCIES=ON -D OIDN_ZIP_MODE=ON ..
make -j`nproc` install
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: build-cpu-ubuntu-2204
path: build/install
test-cpu-ubuntu-2204:
needs: build-cpu-ubuntu-2204
runs-on: ubuntu-latest
container:
image: ubuntu:22.04
steps:
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: build-cpu-ubuntu-2204
- name: Test
run: |
# Adding execution bit to binaries is needed since upload/download GHA is using zip compression
# and it can't preserve files permissions - https://github.com/actions/upload-artifact/issues/38
chmod +x ./bin/*
./bin/oidnTest
./bin/oidnBenchmark -v 1