mirror of
https://github.com/hwchase17/langchain.git
synced 2025-08-09 04:50:37 +00:00
infra: ci end check, consolidation (#17987)
Consolidates CI checks into check_diffs.yml in order to properly consolidate them into a single success status
This commit is contained in:
parent
f6a98032e4
commit
afc1def49b
4
.github/scripts/check_diff.py
vendored
4
.github/scripts/check_diff.py
vendored
@ -48,3 +48,7 @@ if __name__ == "__main__":
|
|||||||
pass
|
pass
|
||||||
json_output = json.dumps(list(dirs_to_run))
|
json_output = json.dumps(list(dirs_to_run))
|
||||||
print(f"dirs-to-run={json_output}") # noqa: T201
|
print(f"dirs-to-run={json_output}") # noqa: T201
|
||||||
|
|
||||||
|
extended_test_dirs = [d for d in dirs_to_run if not d.startswith("libs/partners")]
|
||||||
|
json_output_extended = json.dumps(extended_test_dirs)
|
||||||
|
print(f"dirs-to-run-extended={json_output_extended}") # noqa: T201
|
||||||
|
126
.github/workflows/_all_ci.yml
vendored
126
.github/workflows/_all_ci.yml
vendored
@ -1,126 +0,0 @@
|
|||||||
---
|
|
||||||
name: langchain CI
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_call:
|
|
||||||
inputs:
|
|
||||||
working-directory:
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
description: "From which folder this pipeline executes"
|
|
||||||
workflow_dispatch:
|
|
||||||
inputs:
|
|
||||||
working-directory:
|
|
||||||
required: true
|
|
||||||
type: choice
|
|
||||||
default: 'libs/langchain'
|
|
||||||
options:
|
|
||||||
- libs/langchain
|
|
||||||
- libs/core
|
|
||||||
- libs/experimental
|
|
||||||
- libs/community
|
|
||||||
|
|
||||||
|
|
||||||
# If another push to the same PR or branch happens while this workflow is still running,
|
|
||||||
# cancel the earlier run in favor of the next run.
|
|
||||||
#
|
|
||||||
# There's no point in testing an outdated version of the code. GitHub only allows
|
|
||||||
# a limited number of job runners to be active at the same time, so it's better to cancel
|
|
||||||
# pointless jobs early so that more useful jobs can run sooner.
|
|
||||||
concurrency:
|
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}-${{ inputs.working-directory }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
|
|
||||||
env:
|
|
||||||
POETRY_VERSION: "1.7.1"
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
lint:
|
|
||||||
name: "-"
|
|
||||||
uses: ./.github/workflows/_lint.yml
|
|
||||||
with:
|
|
||||||
working-directory: ${{ inputs.working-directory }}
|
|
||||||
secrets: inherit
|
|
||||||
|
|
||||||
test:
|
|
||||||
name: "-"
|
|
||||||
uses: ./.github/workflows/_test.yml
|
|
||||||
with:
|
|
||||||
working-directory: ${{ inputs.working-directory }}
|
|
||||||
secrets: inherit
|
|
||||||
|
|
||||||
compile-integration-tests:
|
|
||||||
name: "-"
|
|
||||||
uses: ./.github/workflows/_compile_integration_test.yml
|
|
||||||
with:
|
|
||||||
working-directory: ${{ inputs.working-directory }}
|
|
||||||
secrets: inherit
|
|
||||||
|
|
||||||
dependencies:
|
|
||||||
name: "-"
|
|
||||||
uses: ./.github/workflows/_dependencies.yml
|
|
||||||
with:
|
|
||||||
working-directory: ${{ inputs.working-directory }}
|
|
||||||
secrets: inherit
|
|
||||||
|
|
||||||
extended-tests:
|
|
||||||
name: "make extended_tests #${{ matrix.python-version }}"
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
python-version:
|
|
||||||
- "3.8"
|
|
||||||
- "3.9"
|
|
||||||
- "3.10"
|
|
||||||
- "3.11"
|
|
||||||
defaults:
|
|
||||||
run:
|
|
||||||
working-directory: ${{ inputs.working-directory }}
|
|
||||||
if: ${{ ! startsWith(inputs.working-directory, 'libs/partners/') }}
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Set up Python ${{ matrix.python-version }} + Poetry ${{ env.POETRY_VERSION }}
|
|
||||||
uses: "./.github/actions/poetry_setup"
|
|
||||||
with:
|
|
||||||
python-version: ${{ matrix.python-version }}
|
|
||||||
poetry-version: ${{ env.POETRY_VERSION }}
|
|
||||||
working-directory: ${{ inputs.working-directory }}
|
|
||||||
cache-key: extended
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo "Running extended tests, installing dependencies with poetry..."
|
|
||||||
poetry install -E extended_testing --with test
|
|
||||||
|
|
||||||
- name: Run extended tests
|
|
||||||
run: make extended_tests
|
|
||||||
|
|
||||||
- name: Ensure the tests did not create any additional files
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
set -eu
|
|
||||||
|
|
||||||
STATUS="$(git status)"
|
|
||||||
echo "$STATUS"
|
|
||||||
|
|
||||||
# grep will exit non-zero if the target message isn't found,
|
|
||||||
# and `set -e` above will cause the step to fail.
|
|
||||||
echo "$STATUS" | grep 'nothing to commit, working tree clean'
|
|
||||||
ci_end:
|
|
||||||
name: "CI Success"
|
|
||||||
needs: [lint, test, compile-integration-tests, dependencies, extended-tests]
|
|
||||||
if: ${{ always() }}
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: "CI Success"
|
|
||||||
if: ${{ !failure() }}
|
|
||||||
run: |
|
|
||||||
echo "Success"
|
|
||||||
exit 0
|
|
||||||
- name: "CI Failure"
|
|
||||||
if: ${{ failure() }}
|
|
||||||
run: |
|
|
||||||
echo "Failure"
|
|
||||||
exit 1
|
|
107
.github/workflows/check_diffs.yml
vendored
107
.github/workflows/check_diffs.yml
vendored
@ -16,6 +16,9 @@ concurrency:
|
|||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
|
env:
|
||||||
|
POETRY_VERSION: "1.7.1"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@ -31,14 +34,114 @@ jobs:
|
|||||||
python .github/scripts/check_diff.py ${{ steps.files.outputs.all }} >> $GITHUB_OUTPUT
|
python .github/scripts/check_diff.py ${{ steps.files.outputs.all }} >> $GITHUB_OUTPUT
|
||||||
outputs:
|
outputs:
|
||||||
dirs-to-run: ${{ steps.set-matrix.outputs.dirs-to-run }}
|
dirs-to-run: ${{ steps.set-matrix.outputs.dirs-to-run }}
|
||||||
ci:
|
dirs-to-run-extended: ${{ steps.set-matrix.outputs.dirs-to-run-extended }}
|
||||||
|
lint:
|
||||||
name: cd ${{ matrix.working-directory }}
|
name: cd ${{ matrix.working-directory }}
|
||||||
needs: [ build ]
|
needs: [ build ]
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
working-directory: ${{ fromJson(needs.build.outputs.dirs-to-run) }}
|
working-directory: ${{ fromJson(needs.build.outputs.dirs-to-run) }}
|
||||||
uses: ./.github/workflows/_all_ci.yml
|
uses: ./.github/workflows/_lint.yml
|
||||||
with:
|
with:
|
||||||
working-directory: ${{ matrix.working-directory }}
|
working-directory: ${{ matrix.working-directory }}
|
||||||
|
secrets: inherit
|
||||||
|
|
||||||
|
test:
|
||||||
|
name: cd ${{ matrix.working-directory }}
|
||||||
|
needs: [ build ]
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
working-directory: ${{ fromJson(needs.build.outputs.dirs-to-run) }}
|
||||||
|
uses: ./.github/workflows/_test.yml
|
||||||
|
with:
|
||||||
|
working-directory: ${{ matrix.working-directory }}
|
||||||
|
secrets: inherit
|
||||||
|
|
||||||
|
compile-integration-tests:
|
||||||
|
name: cd ${{ matrix.working-directory }}
|
||||||
|
needs: [ build ]
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
working-directory: ${{ fromJson(needs.build.outputs.dirs-to-run) }}
|
||||||
|
uses: ./.github/workflows/_compile_integration_test.yml
|
||||||
|
with:
|
||||||
|
working-directory: ${{ matrix.working-directory }}
|
||||||
|
secrets: inherit
|
||||||
|
|
||||||
|
dependencies:
|
||||||
|
name: cd ${{ matrix.working-directory }}
|
||||||
|
needs: [ build ]
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
working-directory: ${{ fromJson(needs.build.outputs.dirs-to-run) }}
|
||||||
|
uses: ./.github/workflows/_dependencies.yml
|
||||||
|
with:
|
||||||
|
working-directory: ${{ matrix.working-directory }}
|
||||||
|
secrets: inherit
|
||||||
|
|
||||||
|
extended-tests:
|
||||||
|
name: "cd ${{ matrix.working-directory }} / make extended_tests #${{ matrix.python-version }}"
|
||||||
|
needs: [ build ]
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
# note different variable for extended test dirs
|
||||||
|
working-directory: ${{ fromJson(needs.build.outputs.dirs-to-run-extended) }}
|
||||||
|
python-version:
|
||||||
|
- "3.8"
|
||||||
|
- "3.9"
|
||||||
|
- "3.10"
|
||||||
|
- "3.11"
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
working-directory: ${{ matrix.working-directory }}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up Python ${{ matrix.python-version }} + Poetry ${{ env.POETRY_VERSION }}
|
||||||
|
uses: "./.github/actions/poetry_setup"
|
||||||
|
with:
|
||||||
|
python-version: ${{ matrix.python-version }}
|
||||||
|
poetry-version: ${{ env.POETRY_VERSION }}
|
||||||
|
working-directory: ${{ matrix.working-directory }}
|
||||||
|
cache-key: extended
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
echo "Running extended tests, installing dependencies with poetry..."
|
||||||
|
poetry install -E extended_testing --with test
|
||||||
|
|
||||||
|
- name: Run extended tests
|
||||||
|
run: make extended_tests
|
||||||
|
|
||||||
|
- name: Ensure the tests did not create any additional files
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
set -eu
|
||||||
|
|
||||||
|
STATUS="$(git status)"
|
||||||
|
echo "$STATUS"
|
||||||
|
|
||||||
|
# grep will exit non-zero if the target message isn't found,
|
||||||
|
# and `set -e` above will cause the step to fail.
|
||||||
|
echo "$STATUS" | grep 'nothing to commit, working tree clean'
|
||||||
|
ci_end:
|
||||||
|
name: "CI Success"
|
||||||
|
needs: [build, lint, test, compile-integration-tests, dependencies, extended-tests]
|
||||||
|
if: ${{ always() }}
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: "CI Success"
|
||||||
|
if: ${{ !failure() }}
|
||||||
|
run: |
|
||||||
|
echo "Success"
|
||||||
|
exit 0
|
||||||
|
- name: "CI Failure"
|
||||||
|
if: ${{ failure() }}
|
||||||
|
run: |
|
||||||
|
echo "Failure"
|
||||||
|
exit 1
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user