Skip to content

Disable wasm tests in windows with address sanitizer. #352

Disable wasm tests in windows with address sanitizer.

Disable wasm tests in windows with address sanitizer. #352

Workflow file for this run

name: Linux Test
on:
workflow_dispatch:
pull_request:
push:
tags:
- 'v*.*.*'
branches:
- master
- develop
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
linux-test:
name: Linux GCC Test
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
build: [debug, release]
image: ["debian:bookworm-slim", "debian:bullseye-slim", "ubuntu:kinetic"] # TODO: "alpine:3.17"
env:
DEBIAN_FRONTEND: noninteractive
LTTNG_UST_REGISTER_TIMEOUT: 0
NUGET_XMLDOC_MODE: skip
DOTNET_CLI_TELEMETRY_OPTOUT: 'true'
steps:
- name: Check out the repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install, build and run tests
run: ./docker-compose.sh test
env:
METACALL_BUILD_TYPE: ${{ matrix.build }}
METACALL_BASE_IMAGE: ${{ matrix.image }}