chore(deps): bump launchdarkly/gh-actions/.github/workflows/lint-pr-title.yml from f1760cc538c362c2ab826a3bd22611743ef8f82c to de4859c8d07c097d573fbcc4bd10b77efed0f5cc #1153
Workflow file for this run
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: hello-apps | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths-ignore: | |
| - '**.md' #Do not need to run CI for markdown changes. | |
| pull_request: | |
| branches: [ main, "feat/**" ] | |
| paths-ignore: | |
| - '**.md' | |
| jobs: | |
| smoketest: | |
| strategy: | |
| matrix: | |
| os: [ "ubuntu-22.04", "macos-15", "windows-2022" ] | |
| fail-fast: false | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| # https://github.com/actions/checkout/releases/tag/v4.3.0 | |
| - uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 | |
| # https://github.com/ilammy/msvc-dev-cmd/releases/tag/v1.13.0 | |
| - uses: ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756 | |
| - name: Install Ninja | |
| uses: ./.github/actions/install-ninja | |
| - name: Install boost | |
| uses: ./.github/actions/install-boost | |
| id: install-boost | |
| - name: Install OpenSSL | |
| uses: ./.github/actions/install-openssl | |
| id: install-openssl | |
| - name: Statically Linked Hello Apps | |
| shell: bash | |
| run: ./scripts/run-hello-apps.sh static hello-c-client hello-cpp-client hello-c-server hello-cpp-server | |
| env: | |
| BOOST_ROOT: ${{ steps.install-boost.outputs.BOOST_ROOT }} | |
| Boost_DIR: ${{ steps.install-boost.outputs.Boost_DIR }} | |
| - name: Dynamically Linked Hello Apps (C API only) | |
| shell: bash | |
| continue-on-error: true # TODO(SC-223804) | |
| run: ./scripts/run-hello-apps.sh dynamic hello-c-client hello-c-server | |
| env: | |
| BOOST_ROOT: ${{ steps.install-boost.outputs.BOOST_ROOT }} | |
| OPENSSL_ROOT_DIR: ${{ steps.install-openssl.outputs.OPENSSL_ROOT_DIR }} | |
| - name: Dynamically Linked Hello Apps (C and C++ APIs) | |
| shell: bash | |
| continue-on-error: true # TODO(SC-223804) | |
| run: ./scripts/run-hello-apps.sh dynamic-export-all-symbols hello-c-client hello-cpp-client hello-c-server hello-cpp-server | |
| env: | |
| BOOST_ROOT: ${{ steps.install-boost.outputs.BOOST_ROOT }} | |
| OPENSSL_ROOT_DIR: ${{ steps.install-openssl.outputs.OPENSSL_ROOT_DIR }} |