forked from ImagingDataCommons/libdicomicc
-
Notifications
You must be signed in to change notification settings - Fork 0
90 lines (90 loc) · 2.26 KB
/
run_unit_tests.yml
File metadata and controls
90 lines (90 loc) · 2.26 KB
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
name: build and test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
linux:
name: Build and run tests on Linux
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install emscripten
uses: mymindstorm/setup-emsdk@v14
with:
version: 4.0.19
actions-cache-folder: ".emsdk-cache"
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: "24.13.1"
- name: Install yarn package manager
run: npm install --global yarn
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y liblcms2-dev autoconf cmake
- name: Build and install library
run: |
mkdir build
cd build
cmake ..
make
sudo make install
- name: Build WebAssembly bindings
run: |
yarn run clean
yarn run build
macos:
name: Build and run tests on macOS
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install emscripten
uses: mymindstorm/setup-emsdk@v14
with:
version: 4.0.19
actions-cache-folder: ".emsdk-cache"
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: "24.13.1"
- name: Install yarn package manager
run: npm install --global yarn
- name: Install dependencies
run: |
brew update
brew upgrade
brew install \
autoconf \
automake \
libtool \
little-cms2 \
llvm \
cmake
- name: Build and install library
run: |
mkdir build
cd build
cmake -DCMAKE_PREFIX_PATH=$PWD/install -DCMAKE_INSTALL_PREFIX=$PWD/install ..
make
make install
- name: Build WebAssembly bindings
run: |
yarn run clean
yarn run build