Skip to content

Commit

Permalink
Add local testing in the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
cguimaraes committed Jul 28, 2023
1 parent 0b0de31 commit cfa95f0
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
#
# Copyright (c) 2022 ZettaScale Technology
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# ZettaScale Zenoh Team, <[email protected]>
#
name: testing

on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
schedule:
- cron: '0 6 * * 1-5'

jobs:
build:

name: Build on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macOS-latest ]

steps:
- uses: actions/checkout@v2

- name: Compile debug
run: make all
env:
BUILD_TYPE: Debug
BUILD_TESTING: ON
BUILD_MULTICAST: OFF
BUILD_INTEGRATION: OFF

- name: Test debug
run: make test
env:
BUILD_TYPE: Debug # Workaround for Windows as it seems the previous step is being ignored
BUILD_TESTING: OFF # Workaround for Windows as it seems the previous step is being ignored
BUILD_MULTICAST: OFF # Workaround for Windows as it seems the previous step is being ignored
BUILD_INTEGRATION: ON # Workaround for Windows as it seems the previous step is being ignored
ZENOH_BRANCH: master

0 comments on commit cfa95f0

Please sign in to comment.