GitHub actions and workflows #1
Workflow file for this run
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: facebook/rocksdb/jobs-windows | |
on: [push, pull_request] | |
env: | |
THIRDPARTY_HOME: ${{ github.workspace }}/thirdparty | |
CMAKE_HOME: C:/Program Files/CMake | |
CMAKE_BIN: C:/Program Files/CMake/bin/cmake.exe | |
CTEST_BIN: C:/Program Files/CMake/bin/ctest.exe | |
JAVA_HOME: C:/Program Files/BellSoft/LibericaJDK-8 | |
SNAPPY_HOME: ${{ github.workspace }}/thirdparty/snappy-1.1.8 | |
SNAPPY_INCLUDE: ${{ github.workspace }}/thirdparty/snappy-1.1.8;${{ github.workspace }}/thirdparty/snappy-1.1.8/build | |
SNAPPY_LIB_DEBUG: ${{ github.workspace }}/thirdparty/snappy-1.1.8/build/Debug/snappy.lib | |
jobs: | |
# TODO: move some to nightly as in a140b51 | |
build-windows-vs2022-avx2: | |
runs-on: windows-2022 | |
env: | |
CMAKE_GENERATOR: Visual Studio 17 2022 | |
CMAKE_PORTABLE: AVX2 | |
steps: | |
- uses: actions/checkout@v4.1.0 | |
- uses: "./.github/actions/windows-build-steps" | |
build-windows-vs2022: | |
runs-on: windows-2022 | |
env: | |
CMAKE_GENERATOR: Visual Studio 17 2022 | |
CMAKE_PORTABLE: 1 | |
steps: | |
- uses: actions/checkout@v4.1.0 | |
- uses: "./.github/actions/windows-build-steps" | |
build-windows-vs2019: | |
runs-on: windows-2019 | |
env: | |
CMAKE_GENERATOR: Visual Studio 16 2019 | |
CMAKE_PORTABLE: 1 | |
steps: | |
- uses: actions/checkout@v4.1.0 | |
- uses: "./.github/actions/windows-build-steps" | |