Skip to content

Alpine

Alpine #402

Workflow file for this run

# 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 8 * * 1"
push:
branches: [ main ]
paths-ignore:
- 'docs/**'
- '**.adoc'
- '**.md'
- .github/workflows/lint.yml
- .github/workflows/macos.yml
- .github/workflows/ubuntu.yml
- .github/workflows/windows-msys.yml
- .cirrus.yml
pull_request:
paths-ignore:
- 'docs/**'
- '**.adoc'
- '**.md'
- .github/workflows/lint.yml
- .github/workflows/macos.yml
- .github/workflows/ubuntu.yml
- .github/workflows/windows-msys.yml
- .cirrus.yml
workflow_dispatch:
concurrency:
group: '${{ github.workflow }}-${{ github.job }}-${{ github.head_ref || github.ref_name }}'
cancel-in-progress: true
env:
CACHE_VER: 37
TZ: "Etc/UTC"
VERBOSE: no
jobs:
setup:
name: setup alpine-${{ matrix.env.ALPINE_VER }} Ruby ${{ matrix.package_ruby_ver }} CC ${{ matrix.env.CC }}
runs-on: ubuntu-latest
container:
image: alpine:${{ matrix.env.ALPINE_VER }}
strategy:
fail-fast: false
matrix:
# Alpine 3.16 (which is now 'latest') installs gcc 11.x that does not work for seven_zip_ruby
# https://github.com/masamitsu-murase/seven_zip_ruby/issues/36
env:
- CC: gcc
CXX: g++
ALPINE_VER: "3.16"
- CC: clang
CXX: clang++
ALPINE_VER: "3.16"
env: ${{ matrix.env }}
steps:
- name: Install packages
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 sed \
lz4-dev openssl-dev zlib-dev \
libunwind-dev libdwarf-dev gflags-dev elfutils-dev \
libevent-static openssl-libs-static lz4-static xz-dev \
zlib-static libunwind-static acl-static tar libffi-dev \
gdbm-dev yaml-dev yaml-static ncurses-dev ncurses-static \
readline-dev readline-static ruby-dev
- name: Checkout tebako packaging environment
uses: actions/checkout@v3
with:
fetch-depth: 1
submodules: true
- name: Setup environment
run: cat common.env >> $GITHUB_ENV
- name: Install clang
if: ${{ matrix.env.CC == 'clang' }}
run: apk --no-cache --upgrade add clang
- name: Patch system includes
if: ${{ matrix.env.CC == 'clang' }}
run: tools/ci-scripts/patch-system-includes.sh
- name: Build libjemalloc
run: |
wget -q https://github.com/jemalloc/jemalloc/releases/download/5.2.1/jemalloc-5.2.1.tar.bz2
tar -xf jemalloc-5.2.1.tar.bz2
cd jemalloc-5.2.1
./configure
make -j4
make install
- name: Install bundle
run: |
gem install bundler
bundle install
bundle exec rake generate_version_txt
- name: Create deps folder
run: mkdir ${{ env.DEPS }}
- name: Process cache
id: cache
uses: actions/cache@v3
with:
path: ${{ env.DEPS }}
key: alpine-${{ matrix.env.ALPINE_VER }}-${{ env.CC }}-${{ hashFiles('**/common.env') }}-v${{ env.CACHE_VER }}
- name: tebako setup
run: exe/tebako setup
tests-1:
needs: setup
name: tests-1 alpine-${{ matrix.env.ALPINE_VER }} Ruby ${{ matrix.package_ruby_ver }} CC ${{ matrix.env.CC }}
if: ${{ !contains(github.event.head_commit.message, '[cache only]') && !contains(github.event.head_commit.message, '[metanorma only]') }}
runs-on: ubuntu-latest
container:
image: alpine:${{ matrix.env.ALPINE_VER }}
strategy:
fail-fast: false
matrix:
env:
- CC: gcc
CXX: g++
ALPINE_VER: "3.16"
- CC: clang
CXX: clang++
ALPINE_VER: "3.16"
package_ruby_ver: [ '3.0.6' ]
env: ${{ matrix.env }}
steps:
- name: Install packages
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 sed \
lz4-dev openssl-dev zlib-dev \
libunwind-dev libdwarf-dev gflags-dev elfutils-dev \
libevent-static openssl-libs-static lz4-static xz-dev \
zlib-static libunwind-static acl-static tar libffi-dev \
gdbm-dev yaml-dev yaml-static ncurses-dev ncurses-static \
readline-dev readline-static ruby-dev
- name: Checkout tebako packaging environment
uses: actions/checkout@v3
with:
fetch-depth: 1
submodules: true
- name: Setup environment
run: cat common.env >> $GITHUB_ENV
- name: Install clang
if: ${{ matrix.env.CC == 'clang' }}
run: apk --no-cache --upgrade add clang
- name: Patch system includes
if: ${{ matrix.env.CC == 'clang' }}
run: tools/ci-scripts/patch-system-includes.sh
- name: Build libjemalloc
run: |
wget -q https://github.com/jemalloc/jemalloc/releases/download/5.2.1/jemalloc-5.2.1.tar.bz2
tar -xf jemalloc-5.2.1.tar.bz2
cd jemalloc-5.2.1
./configure
make -j4
make install
- name: Install bundler
run: |
gem install bundler
bundle install
- name: Create deps folder
run: mkdir ${{ env.DEPS }}
- name: Process cache
id: cache
uses: actions/cache@v3
with:
path: ${{ env.DEPS }}
key: alpine-${{ matrix.env.ALPINE_VER }}-${{ env.CC }}-${{ hashFiles('**/common.env') }}-v${{ env.CACHE_VER }}
- name: Cache check
if: steps.cache.outputs.cache-hit != 'true'
run: |
echo "Failed to upload cache"
false
- name: Checkout shell test framework
uses: actions/checkout@v3
with:
repository: kward/shunit2
path: tests/shunit2
fetch-depth: 1
- name: Run tebako tests (set no. 1)
run: RUBY_VER=${{ matrix.package_ruby_ver }} tests/scripts/functional-tests.sh
- name: Strip tebako test packages
run: strip *-package
- name: Upload tebako test packages
if: ${{ matrix.package_ruby_ver == env.RUBY_VER && matrix.env.CC == 'clang' }}
uses: actions/upload-artifact@v3
with:
name: test-packages
retention-days: 1
path: |
test-01-package
test-11-package
test-15-package
test-18-package
test-19-package
tests-2:
needs: setup
name: tests-2 alpine-${{ matrix.env.ALPINE_VER }} Ruby ${{ matrix.package_ruby_ver }} CC ${{ matrix.env.CC }}
if: ${{ !contains(github.event.head_commit.message, '[cache only]') && !contains(github.event.head_commit.message, '[metanorma only]') }}
runs-on: ubuntu-latest
container:
image: alpine:${{ matrix.env.ALPINE_VER }}
strategy:
fail-fast: false
matrix:
env:
- CC: gcc
CXX: g++
ALPINE_VER: "3.16"
- CC: clang
CXX: clang++
ALPINE_VER: "3.16"
package_ruby_ver: [ '3.0.6', '3.1.4' ]
env: ${{ matrix.env }}
steps:
- name: Install packages
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 sed \
lz4-dev openssl-dev zlib-dev \
libunwind-dev libdwarf-dev gflags-dev elfutils-dev \
libevent-static openssl-libs-static lz4-static xz-dev \
zlib-static libunwind-static acl-static tar libffi-dev \
gdbm-dev yaml-dev yaml-static ncurses-dev ncurses-static \
readline-dev readline-static ruby-dev p7zip
- name: Checkout tebako packaging environment
uses: actions/checkout@v3
with:
fetch-depth: 1
submodules: true
- name: Setup environment
run: cat common.env >> $GITHUB_ENV
- name: Patch system includes
if: ${{ matrix.env.CC == 'clang' }}
run: tools/ci-scripts/patch-system-includes.sh
- name: Install bundler
run: |
gem install bundler
bundle install
- name: Install clang
if: ${{ matrix.env.CC == 'clang' }}
run: apk --no-cache --upgrade add clang
- name: Build libjemalloc
run: |
wget -q https://github.com/jemalloc/jemalloc/releases/download/5.2.1/jemalloc-5.2.1.tar.bz2
tar -xf jemalloc-5.2.1.tar.bz2
cd jemalloc-5.2.1
./configure
make -j4
make install
- name: Create deps folder
run: mkdir ${{ env.DEPS }}
- name: Process cache
id: cache
uses: actions/cache@v3
with:
path: ${{ env.DEPS }}
key: alpine-${{ matrix.env.ALPINE_VER }}-${{ env.CC }}-${{ hashFiles('**/common.env') }}-v${{ env.CACHE_VER }}
- name: Cache check
if: steps.cache.outputs.cache-hit != 'true'
run: |
echo "Failed to upload cache"
false
- name: Run tebako tests (set no. 2)
run: RUBY_VER=${{ matrix.package_ruby_ver }} ruby tests-2/tebako-test.rb
test-on-alpine-latest:
if: ${{ !contains(github.event.head_commit.message, '[cache only]') && !contains(github.event.head_commit.message, '[metanorma only]') }}
needs: tests-1
runs-on: ubuntu-latest
container:
image: alpine:latest
steps:
- name: Install packages
run: apk --no-cache --upgrade add git bash
- name: Checkout tebako packaging environment
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Download test packages
uses: actions/download-artifact@v3
with:
name: test-packages
- name: Run test packages
run: tests/scripts/cross-tests.sh