dependabot: bump codecov/codecov-action from 1.2.1 to 4.6.0 #1167
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: Multi node test workflow | |
# This workflow is triggered on pull requests to master | |
on: | |
pull_request: | |
branches: | |
- "*" | |
push: | |
branches: | |
- "*" | |
jobs: | |
Get-CI-Image-Tag: | |
uses: opensearch-project/opensearch-build/.github/workflows/get-ci-image-tag.yml@main | |
with: | |
product: opensearch | |
build: | |
strategy: | |
matrix: | |
java: [ 21 ] | |
# Job name | |
needs: Get-CI-Image-Tag | |
name: Build Asynchronous Search | |
# This job runs on Linux | |
runs-on: ubuntu-latest | |
container: | |
# using the same image which is used by opensearch-build team to build the OpenSearch Distribution | |
# this image tag is subject to change as more dependencies and updates will arrive over time | |
image: ${{ needs.Get-CI-Image-Tag.outputs.ci-image-version-linux }} | |
# need to switch to root so that github actions can install runner binary on container without permission issues. | |
options: --user root | |
# actions/checkout@v4 and actions/setup-java@v4 use node 20: | |
# https://github.com/actions/checkout/releases/tag/v4.0.0 | |
# container image does not have GLIBC_2.28 required for this node version | |
# as such use @v3 actions instead for this workflow and set ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION | |
env: | |
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true | |
steps: | |
# This step uses the setup-java Github action: https://github.com/actions/setup-java | |
- name: Set Up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin # Temurin is a distribution of adoptium | |
java-version: ${{ matrix.java }} | |
# This step uses the checkout Github action: https://github.com/actions/checkout | |
- name: Checkout Branch | |
uses: actions/checkout@v3 | |
- name: Run integration tests with multi node config | |
run: | | |
chown -R 1000:1000 `pwd` | |
su `id -un 1000` -c "./gradlew integTest -PnumNodes=5" | |
- name: Run Backwards Compatibility Tests | |
run: | | |
echo "Running backwards compatibility tests ..." | |
chown -R 1000:1000 `pwd` | |
su `id -un 1000` -c "./gradlew bwcTestSuite -Dtests.security.manager=false" | |
- name: Upload failed logs | |
uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: logs | |
path: build/testclusters/integTest-*/logs/* |