-
Notifications
You must be signed in to change notification settings - Fork 0
141 lines (123 loc) · 5.09 KB
/
alpine.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
141
# Copyright (c) 2021-2023 [Ribose Inc](https://www.ribose.com).
# All rights reserved.
# This file is a part of tamatebako
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
name: Alpine
on:
schedule:
- cron: "0 9 * * 0"
push:
branches: [ main, maxirmx-windows-build ]
paths-ignore:
- 'docs/**'
- '**.adoc'
- '**.md'
- '.cirrus.yml'
- '.github/workflows/*.yml'
- '!.github/workflows/alpine.yml'
pull_request:
paths-ignore:
- 'docs/**'
- '**.adoc'
- '**.md'
- '.cirrus.yml'
- '.github/workflows/*.yml'
- '!.github/workflows/alpine.yml'
workflow_dispatch:
concurrency:
group: '${{ github.workflow }}-${{ github.job }}-${{ github.head_ref || github.ref_name }}'
cancel-in-progress: true
env:
ALPINE_VER: 3.17
CACHE_VER: 1
jobs:
build:
name: alpine-3.17 [CC ${{ matrix.env.CC }}, ASAN ${{ matrix.env.ASAN }}, ${{ matrix.env.LOG_LEVEL }} ]
runs-on: ubuntu-latest
container:
image: alpine:3.17
strategy:
fail-fast: false
matrix:
env:
- { CC: gcc, CXX: g++, ASAN: 'OFF', LOG_LEVEL: 'trace' }
- { CC: clang, CXX: clang++, ASAN: 'OFF', LOG_LEVEL: 'warn' }
- { CC: clang, CXX: clang++, ASAN: 'ON', LOG_LEVEL: 'warn' }
env: ${{ matrix.env }}
steps:
- name: Install packages
# glog and double-conversion do not provide static versions so we build them locally
# fmt (10.x.x) is built by dwarfs script
# lz4-static apk installs a lbrary that requires lto plugin (binutil-gold) so we build it locally as well
run: |
apk --no-cache --upgrade add build-base cmake git bash \
autoconf boost-static boost-dev flex-dev bison \
binutils-dev libevent-dev acl-dev xz-static \
lz4-dev openssl-dev zlib-dev gflags-dev jemalloc-dev \
libunwind-dev libdwarf-dev elfutils-dev fmt-dev \
libevent-static openssl-libs-static xz-dev \
zlib-static libunwind-static acl-static tar brotli-dev \
brotli-static
- name: Install clang
if: ${{ matrix.env.CC == 'clang' }}
run: apk --no-cache --upgrade add clang
- name: Install lz4-static
if: ${{ matrix.env.CC == 'gcc' }}
run: apk --no-cache --upgrade add lz4-static
- name: Install ASAN libraries
if: ${{ matrix.env.ASAN == 'ON' }}
run: apk --no-cache --upgrade add compiler-rt
- name: Declare directory safe
run: git config --global --add safe.directory "$(pwd)"
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Setup environment
run: |
cat common.env ubuntu.env >> $GITHUB_ENV
echo "CORES=$(nproc --all)" >> $GITHUB_ENV
echo "MAKEFLAGS=j$(nproc --all)" >> $GITHUB_ENV
- name: Create deps folder
run: mkdir ${{env.DEPS}}
- name: Process cache
uses: actions/cache@v3
with:
path: ${{env.DEPS}}
key: alpine-${{ env.ALPINE_VER }}-${{ matrix.env.CC }}-${{ hashFiles('**/common.env') }}-${{ env.ASAN }}-${{ env.COVERAGE }}-${{ env.LOG_LEVEL }}-v${{ env.CACHE_VER }}
- name: Configure
run: cmake -B build -DWITH_TESTS=ON -DWITH_ASAN=${{ env.ASAN }} -DTESTS_LOG_LEVEL=${{ env.LOG_LEVEL }}
- name: Build
run: cmake --build build --parallel "$CORES"
- name: Run unit tests
run: ctest --test-dir build --output-on-failure --parallel "$CORES"
- name: Checkout shell test framework
if: ${{ env.COVERAGE != 'ON' && env.ASAN != 'ON' }}
uses: actions/checkout@v3
with:
repository: kward/shunit2
path: tests/shunit2
fetch-depth: 1
- name: Run additional tests
if: ${{ env.COVERAGE != 'ON' && env.ASAN != 'ON' }}
run: tests/scripts/tests.sh