Integration with latest VW #1789
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: Integration with latest VW | |
on: | |
schedule: | |
- cron: "0 8 * * *" | |
env: | |
VCPKG_DEFAULT_BINARY_CACHE: ${{github.workspace}}/vcpkg_binary_cache | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
LatestVW_RLClientLib: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- run: git -C ${{ github.workspace }}/ext_libs/vcpkg fetch --unshallow | |
- name: Update VW to latest | |
shell: bash | |
run: | | |
pushd ext_libs/vowpal_wabbit | |
git config --global --add safe.directory "$(pwd)" | |
git fetch origin master | |
git reset --hard origin/master | |
popd | |
- uses: lukka/get-cmake@latest | |
- run: echo "VCPKG_COMMIT=$(git rev-parse :ext_libs/vcpkg)" >> $GITHUB_ENV | |
shell: bash | |
- run: mkdir -p ${{ env.VCPKG_DEFAULT_BINARY_CACHE }} | |
- uses: actions/cache@v3 | |
env: | |
cache-name: vcpkg-cache | |
with: | |
path: ${{ env.VCPKG_DEFAULT_BINARY_CACHE }}/* | |
key: ubuntu-latest-build-${{ env.cache-name }}-${{ hashFiles('vcpkg.json') }}-${{ env.VCPKG_COMMIT }}" | |
- uses: lukka/run-vcpkg@v10 | |
with: | |
vcpkgDirectory: '${{ github.workspace }}/ext_libs/vcpkg' | |
vcpkgJsonGlob: "${{ github.workspace }}/vcpkg.json" | |
- name: Configure | |
run: > | |
cmake -S . -B build -G Ninja | |
-DCMAKE_BUILD_TYPE=Debug | |
-DCMAKE_TOOLCHAIN_FILE="${{ github.workspace }}/ext_libs/vcpkg/scripts/buildsystems/vcpkg.cmake" | |
-DFMT_SYS_DEP=ON | |
-DSPDLOG_SYS_DEP=ON | |
- name: Build | |
run: | | |
cmake --build build | |
- name: Test | |
run: | | |
cd build | |
ctest --verbose --output-on-failure | |
LatestVW_BinaryParser: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Update VW to latest | |
shell: bash | |
run: | | |
pushd ext_libs/vowpal_wabbit | |
git config --global --add safe.directory "$(pwd)" | |
git fetch origin master | |
git reset --hard origin/master | |
popd | |
- uses: lukka/get-cmake@latest | |
- run: echo "VCPKG_COMMIT=$(git rev-parse :ext_libs/vcpkg)" >> $GITHUB_ENV | |
shell: bash | |
- run: mkdir -p ${{ env.VCPKG_DEFAULT_BINARY_CACHE }} | |
- uses: actions/cache@v3 | |
env: | |
cache-name: vcpkg-cache | |
with: | |
path: ${{ env.VCPKG_DEFAULT_BINARY_CACHE }}/* | |
key: ubuntu-latest-build-${{ env.cache-name }}-${{ hashFiles('vcpkg.json') }}-${{ env.VCPKG_COMMIT }}" | |
- uses: lukka/run-vcpkg@v10 | |
with: | |
vcpkgDirectory: '${{ github.workspace }}/ext_libs/vcpkg' | |
vcpkgJsonGlob: "${{ github.workspace }}/vcpkg.json" | |
- name: Configure | |
run: > | |
cd external_parser; | |
cmake -S . -B build -G Ninja | |
-DCMAKE_BUILD_TYPE=Debug | |
-DCMAKE_TOOLCHAIN_FILE="${{ github.workspace }}/ext_libs/vcpkg/scripts/buildsystems/vcpkg.cmake" | |
-DVCPKG_MANIFEST_DIR="${{ github.workspace }}" | |
-DWARNING_AS_ERROR=OFF | |
-Wno-deprecated | |
-DFMT_SYS_DEP=ON | |
-DSPDLOG_SYS_DEP=ON | |
- name: Build | |
run: | | |
cd external_parser | |
cmake --build build | |
- name: Test | |
run: | | |
cd external_parser/build | |
ctest --verbose --output-on-failure |