runtime-spec: use version v1.2.0
and bump other deps.
#159
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: [push, pull_request] | |
jobs: | |
build_job: | |
runs-on: ubuntu-latest | |
name: Build on ${{ matrix.arch }} | |
strategy: | |
matrix: | |
include: | |
- arch: armv7 | |
distro: ubuntu_latest | |
- arch: aarch64 | |
distro: ubuntu_latest | |
- arch: s390x | |
distro: ubuntu_latest | |
- arch: ppc64le | |
distro: ubuntu_latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
submodules: true | |
set-safe-directory: true | |
- uses: uraimo/[email protected] | |
name: Build | |
id: build | |
with: | |
arch: ${{ matrix.arch }} | |
distro: ${{ matrix.distro }} | |
githubToken: ${{ github.token }} | |
setup: | | |
git submodule update --init --recursive | |
install: | | |
apt-get update -q -y | |
apt-get install -q -y python3 automake libtool autotools-dev git make cmake pkg-config gcc wget libyajl-dev | |
run: | | |
find $(pwd) -name '.git' -exec bash -c 'git config --global --add safe.directory ${0%/.git}' {} \; | |
./autogen.sh | |
./configure CFLAGS='-Wall -Wextra -Werror' | |
make -j $(nproc) distcheck | |
# check that the working dir is clean | |
git describe --broken --dirty --all | grep -qv dirty | |
make clean | |
./configure --enable-embedded-yajl CFLAGS='-Wall -Wextra -Werror' | |
make -j $(nproc) distcheck | |
# check that the working dir is clean | |
git describe --broken --dirty --all | grep -qv dirty | |
test_and_build_rust_bindings: | |
name: test and build rust bindings | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --lib | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: --release --all-features |