-
Notifications
You must be signed in to change notification settings - Fork 13
140 lines (124 loc) · 5.42 KB
/
ci-meson.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
140
name: Meson
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
release:
types: [ created ]
jobs:
build:
name: "${{ matrix.configurations.name }} | ${{ matrix.meson-build-type }}"
environment: configure coverage
runs-on: ${{ matrix.configurations.os }}
strategy:
fail-fast: false
matrix:
configurations:
- name: Ubuntu gcc12
os: ubuntu-22.04 # pre-release, ubuntu-latest still points to ubuntu-2004
compiler: gcc12
- name: Ubuntu gcc13
os: ubuntu-22.04 # pre-release, ubuntu-latest still points to ubuntu-2004
compiler: gcc13
- name: Ubuntu Latest clang16
os: ubuntu-22.04 # pre-release, ubuntu-latest still points to ubuntu-2004
compiler: clang16
- name: Ubuntu Latest emscripten
os: ubuntu-22.04 # pre-release, ubuntu-latest still points to ubuntu-2004
compiler: emscripten
# Customize the meson build type here (Release, Debug, RelWithDebInfo, etc.)
meson-build-type: [ release, debug ]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 100
- name: Cache
uses: actions/cache@v3
env:
cache-name: cache-fetchContent-cache
with:
path: ${{runner.workspace}}/build/_deps
key: ${{ runner.os }}-${{ matrix.configurations.compiler }}-${{ matrix.meson-build-type }}-${{ hashFiles('CMakeLists.txt') }}-${{ hashFiles('cmake/Dependencies.cmake') }}
- name: Install PMT meson build deps
run: |
DEBIAN_FRONTEND=noninteractive \
sudo apt-get install -qy \
pybind11-dev \
libgtest-dev \
python3-numpy
- name: Install gcc-12
if: matrix.configurations.compiler == 'gcc12'
run: |
sudo add-apt-repository ppa:ubuntu-toolchain-r/ppa # provides newer gcc 12.2.0 instead of 12.1.0
sudo apt-get install -y gcc-12 g++-12
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 110 --slave /usr/bin/g++ g++ /usr/bin/g++-12 --slave /usr/bin/gcov gcov /usr/bin/gcov-12
- name: Install gcc-13
if: matrix.configurations.compiler == 'gcc13'
run: |
sudo apt-get install -y gcc-13 g++-13
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 110 --slave /usr/bin/g++ g++ /usr/bin/g++-13 --slave /usr/bin/gcov gcov /usr/bin/gcov-13
- name: Install clang-16
if: matrix.configurations.compiler == 'clang16'
run: |
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key|sudo apt-key add -
sudo add-apt-repository 'deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-16 main'
sudo apt update
sudo apt upgrade -y # update clang14 to fix packaging conflicts
sudo apt install -y clang-16 libc++-16-dev libc++abi-16-dev
sudo update-alternatives --install /usr/bin/c++ c++ /usr/bin/clang++-16 110
- name: Install emscripten
if: matrix.configurations.compiler == 'emscripten'
run: |
cd
git clone https://github.com/emscripten-core/emsdk.git
cd emsdk
# Download and install the latest SDK tools.
./emsdk install releases-bf3c159888633d232c0507f4c76cc156a43c32dc-64bit
# Make the "latest" SDK "active" for the current user. (writes .emscripten file)
./emsdk activate releases-bf3c159888633d232c0507f4c76cc156a43c32dc-64bit
# Activate PATH and other environment variables in the current terminal
source ./emsdk_env.sh
emcc -v
tee emscripten-toolchain.ini <<EOF >/dev/null
[constants]
toolchain = '$(pwd)/${{ env.EM_CACHE_FOLDER }}/upstream/emscripten/'
EOF
- name: Install Meson
shell: bash
run: |-
sudo apt install python3-pip ninja-build
pip install meson
- name: Configure Meson
if: matrix.configurations.compiler != 'emscripten'
shell: bash
run: meson setup ../build --buildtype=${{matrix.meson-build-type}} -Db_coverage=${{ matrix.configurations.name == env.REFERENCE_CONFIG && matrix.meson-build-type == 'debug'}} -Dpmt:enable_python=false -Dpmt:enable_testing=false
- name: Configure Meson Emscripten
if: matrix.configurations.compiler == 'emscripten'
shell: bash
run: |
source ~/emsdk/emsdk_env.sh
meson setup ../build --cross-file ~/emsdk/emscripten-toolchain.ini --cross-file emscripten-build.ini --buildtype=${{ matrix.meson-build-type }} -Db_coverage=false -Dpmt:enable_python=false -Dpmt:enable_testing=false
- name: Build
if: matrix.configurations.compiler != 'emscripten'
shell: bash
run: cd ../build && ninja
- name: Build Emscripten
if: matrix.configurations.compiler == 'emscripten'
shell: bash
run: |
source ~/emsdk/emsdk_env.sh
cd ../build
ninja
- name: execute binary
if: matrix.configurations.compiler != 'emscripten'
working-directory: ${{runner.workspace}}/build
shell: bash
run: ./src/main
- name: execute binary
if: matrix.configurations.compiler == 'emscripten'
working-directory: ${{runner.workspace}}/build
shell: bash
run: |
source ~/emsdk/emsdk_env.sh
node --experimental-wasm-threads ./src/main.js