mirror of
https://github.com/nestriness/cdc-file-transfer.git
synced 2026-01-30 14:25:36 +02:00
Add actions for building and testing (#8)
* Add a Github action for building and testing On Windows, -- -//third_party/... doesn't seem to work, so add all test directories manually. Also run the tests_*. We run only fastbuild tests here, since the opt tests will be run in the release workflow. Also fix a number of compilation and test issues found along the way.
This commit is contained in:
65
.github/workflows/build_and_test.yml
vendored
Normal file
65
.github/workflows/build_and_test.yml
vendored
Normal file
@@ -0,0 +1,65 @@
|
||||
name: Build & Test
|
||||
|
||||
# Run when something is pushed to main or when there's action on a pull request.
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
|
||||
# Cancel running workflow if a pull request is modified. Note that head_ref is
|
||||
# undefined for pushes to main. Use run_id as fallback. This is unique for each
|
||||
# run, so runs for pushes to main are never cancelled.
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
Build-And-Test-Linux:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Initialize submodules
|
||||
run: git submodule update --init --recursive
|
||||
|
||||
- name: Build (fastbuild)
|
||||
run: |
|
||||
bazel build --config=linux -- //... -//third_party/...
|
||||
|
||||
# Skip file_finder_test: The test works when file_finder_test is run
|
||||
# directly, but not through bazel test. The reason is, bazel test
|
||||
# creates symlinks of test files, but the finder ignores symlinks.
|
||||
# Also run tests sequentially since some tests write to a common tmp dir.
|
||||
- name: Test (fastbuild)
|
||||
run: |
|
||||
bazel test --config=linux --test_output=errors --local_test_jobs=1 -- //... -//third_party/... -//cdc_rsync_server:file_finder_test
|
||||
|
||||
Build-And-Test-Windows:
|
||||
runs-on: windows-2019
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Initialize submodules
|
||||
run: git submodule update --init --recursive
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
bazel build --config=windows //cdc_rsync //cdc_stream //asset_stream_manager //tests_common //tests_asset_streaming_30 //tests_cdc_rsync
|
||||
|
||||
- name: Test
|
||||
run: |
|
||||
bazel-bin\tests_common\tests_common.exe
|
||||
bazel-bin\tests_asset_streaming_30\tests_asset_streaming_30.exe
|
||||
bazel-bin\tests_cdc_rsync\tests_cdc_rsync.exe
|
||||
bazel test --config=windows --test_output=errors --local_test_jobs=1 `
|
||||
//asset_stream_manager/... `
|
||||
//cdc_fuse_fs/... `
|
||||
//cdc_rsync/... `
|
||||
//cdc_rsync/base/... `
|
||||
//cdc_rsync_server/... `
|
||||
//common/... `
|
||||
//data_store/... `
|
||||
//fastcdc/... `
|
||||
//manifest/... `
|
||||
//metrics/...
|
||||
Reference in New Issue
Block a user