chore(deps): bump actions/checkout from 4.3.0 to 7.0.1 #367
This file contains hidden or 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: libs/server-sdk-dynamodb-source | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths-ignore: | |
| - '**.md' # Do not need to run CI for markdown changes. | |
| pull_request: | |
| branches: [ "main", "feat/**" ] | |
| paths-ignore: | |
| - '**.md' | |
| schedule: | |
| # Run daily at midnight PST | |
| - cron: '0 8 * * *' | |
| jobs: | |
| contract-tests-dynamodb: | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - harness: v2 | |
| suppressions: contract-tests/server-contract-tests/persistence-suppressions.txt | |
| - harness: v3 | |
| suppressions: contract-tests/server-contract-tests/persistence-suppressions-fdv2.txt | |
| services: | |
| dynamodb: | |
| image: amazon/dynamodb-local | |
| ports: | |
| - 8000:8000 | |
| env: | |
| TEST_SERVICE_PORT: 8123 | |
| TEST_SERVICE_BINARY: ./build/contract-tests/server-contract-tests/server-tests | |
| steps: | |
| # https://github.com/actions/checkout/releases/tag/v4.3.0 | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 | |
| - uses: ./.github/actions/ci | |
| with: | |
| cmake_target: server-tests | |
| run_tests: false | |
| # AWS C++ SDK requires libcurl at link time on Linux/macOS. | |
| install_curl: true | |
| use_dynamodb: true | |
| - name: 'Launch test service as background task' | |
| run: $TEST_SERVICE_BINARY $TEST_SERVICE_PORT 2>&1 & | |
| # https://github.com/launchdarkly/gh-actions/releases/tag/contract-tests-v1.3.0 | |
| - uses: launchdarkly/gh-actions/actions/contract-tests@5adb11fd6953e1bc35d9cf1fc1b4374c464e3a8b | |
| with: | |
| test_service_port: ${{ env.TEST_SERVICE_PORT }} | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| enable_persistence_tests: true | |
| version: ${{ matrix.harness }} | |
| branch: ${{ matrix.harness }} | |
| # The other suites are covered by libs/server-sdk's workflow. | |
| extra_params: -run=persistent.data.store -skip-from=${{ matrix.suppressions }} | |
| build-test-dynamodb: | |
| runs-on: ubuntu-22.04 | |
| services: | |
| dynamodb: | |
| image: amazon/dynamodb-local | |
| ports: | |
| - 8000:8000 | |
| steps: | |
| # https://github.com/actions/checkout/releases/tag/v7.0.1 | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 | |
| - uses: ./.github/actions/ci | |
| with: | |
| cmake_target: launchdarkly-cpp-server-dynamodb-source | |
| # AWS C++ SDK requires libcurl at link time on Linux/macOS. | |
| install_curl: true | |
| simulate_release: true | |
| build-dynamodb-mac: | |
| runs-on: macos-15 | |
| steps: | |
| # https://github.com/actions/checkout/releases/tag/v7.0.1 | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 | |
| - uses: ./.github/actions/ci | |
| with: | |
| cmake_target: launchdarkly-cpp-server-dynamodb-source | |
| platform_version: 12 | |
| run_tests: false # TODO: figure out how to run dynamodb-local on Mac | |
| install_curl: true | |
| simulate_release: true | |
| build-dynamodb-windows: | |
| runs-on: windows-2022 | |
| steps: | |
| # https://github.com/actions/checkout/releases/tag/v7.0.1 | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 | |
| # https://github.com/ilammy/msvc-dev-cmd/releases/tag/v1.13.0 | |
| - uses: ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756 | |
| - uses: ./.github/actions/ci | |
| env: | |
| BOOST_LIBRARY_DIR: 'C:\local\boost_1_87_0\lib64-msvc-14.3' | |
| BOOST_LIBRARYDIR: 'C:\local\boost_1_87_0\lib64-msvc-14.3' | |
| Boost_DIR: 'C:\local\boost_1_87_0\lib64-msvc-14.3\cmake\Boost-1.87.0' | |
| with: | |
| cmake_target: launchdarkly-cpp-server-dynamodb-source | |
| platform_version: 2022 | |
| toolset: msvc | |
| run_tests: false # TODO: figure out how to run dynamodb-local on Windows | |
| install_curl: true | |
| simulate_windows_release: true |