-
Notifications
You must be signed in to change notification settings - Fork 784
69 lines (57 loc) · 1.92 KB
/
linux.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
name: linux-x64
on: [push, pull_request, workflow_dispatch]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-20.04']
include:
- os: 'ubuntu-20.04'
triplet: 'x64-linux'
steps:
- name: Setup environment
run: |
sudo apt-get update -qq
sudo apt-get install libgl-dev
sudo apt-get install -y cmake
sudo apt-get install -y libopenscenegraph-dev
sudo apt-get install -y libgdal-dev
sudo apt-get install -y libgeos-dev
sudo apt-get install -y libsqlite3-dev
sudo apt-get install -y protobuf-compiler libprotobuf-dev
sudo apt-get install -y libtinyxml-dev
sudo apt-get install -y libglew-dev
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Create Build Environment
run: |
cmake -E make_directory ${{runner.workspace}}/build
- name: Configure CMake
shell: bash
working-directory: ${{ runner.workspace }}/build
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DOSGEARTH_BUILD_LEGACY_SPLAT_NODEKIT=OFF -DOSGEARTH_BUILD_PROCEDURAL_NODEKIT=ON
- name: 'Upload cmake configure log artifact'
uses: actions/upload-artifact@v3
if: ${{ failure() }}
with:
name: cmake-configure-log
path: |
${{ runner.workspace }}/build/CMakeCache.txt
retention-days: 1
- name: Build
working-directory: ${{ runner.workspace }}/build
shell: bash
run: cmake --build . --parallel 4 --config $BUILD_TYPE
- name: 'Upload cmake build log artifact'
uses: actions/upload-artifact@v3
if: ${{ failure() }}
with:
name: cmake-build-log
path: |
${{ runner.workspace }}/build/CMakeCache.txt
retention-days: 1