Switching to Jansson Arrays and Objects #199
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 xz-utils | |
run: | | |
# Install jansson | |
cd jansson; | |
autoreconf -fi; | |
./configure; | |
make; | |
make install; | |
cd .. | |
# Configure and Run libocispec | |
export JANSSON_CFLAGS=-I/usr/local/include; | |
export JANSSON_LIBS=/usr/local/lib/libjansson.so | |
find $(pwd) -name '.git' -exec bash -c 'git config --global --add safe.directory ${0%/.git}' {} \; | |
./autogen.sh --enable-embedded-yajl | |
./configure --enable-embedded-yajl CFLAGS='-Wall -Wextra -Werror' | |
make -j $(nproc) distcheck DISTCHECK_CONFIGURE_FLAGS="--enable-embedded-yajl" AM_DISTCHECK_DVI_TARGET="" TESTS="" | |
# check that the working dir is clean | |
git describe --broken --dirty --all | grep -qv dirty | |
make clean | |
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 |