summaryrefslogtreecommitdiffstats
path: root/fluent-bit/lib/chunkio/.github/workflows
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-07-24 09:54:23 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-07-24 09:54:44 +0000
commit836b47cb7e99a977c5a23b059ca1d0b5065d310e (patch)
tree1604da8f482d02effa033c94a84be42bc0c848c3 /fluent-bit/lib/chunkio/.github/workflows
parentReleasing debian version 1.44.3-2. (diff)
downloadnetdata-836b47cb7e99a977c5a23b059ca1d0b5065d310e.tar.xz
netdata-836b47cb7e99a977c5a23b059ca1d0b5065d310e.zip
Merging upstream version 1.46.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'fluent-bit/lib/chunkio/.github/workflows')
-rw-r--r--fluent-bit/lib/chunkio/.github/workflows/ci.yaml45
1 files changed, 0 insertions, 45 deletions
diff --git a/fluent-bit/lib/chunkio/.github/workflows/ci.yaml b/fluent-bit/lib/chunkio/.github/workflows/ci.yaml
deleted file mode 100644
index c937a2c90..000000000
--- a/fluent-bit/lib/chunkio/.github/workflows/ci.yaml
+++ /dev/null
@@ -1,45 +0,0 @@
-name: Build PR(s) and master branch.
-on:
- push:
- branches:
- - master
- pull_request:
- branches:
- - master
- types: [opened, edited, synchronize]
-jobs:
- build-windows:
- name: Build sources on amd64 for ${{ matrix.os }}
- runs-on: ${{ matrix.os }}
- strategy:
- max-parallel: 48
- fail-fast: false
- matrix:
- os: [windows-latest, windows-2019]
- steps:
- - uses: actions/checkout@v2
- - name: Build on ${{ matrix.os }} with vs-2019
- run: |
- .\scripts\win_build.bat
- - name: Run unit tests.
- run: |
- ctest --rerun-failed --output-on-failure -C Debug --test-dir .
- build-unix:
- name: Build sources on amd64 for ${{ matrix.os }} - ${{ matrix.compiler }}
- runs-on: ${{ matrix.os }}
- strategy:
- max-parallel: 48
- fail-fast: false
- matrix:
- os: [ubuntu-latest, macos-latest]
- compiler: [ gcc, clang ]
- steps:
- - uses: actions/checkout@v2
- - name: Build on ${{ matrix.os }} with ${{ matrix.compiler }}
- run: |
- echo "CC = $CC, CXX = $CXX"
- cmake -DCIO_TESTS=On .
- make all
- ctest --rerun-failed --output-on-failure -C Debug --test-dir .
- env:
- CC: ${{ matrix.compiler }}