Skip to content

Commit

Permalink
cr
Browse files Browse the repository at this point in the history
  • Loading branch information
bracesproul committed Jul 30, 2024
1 parent c53cb6b commit 4f5e162
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 26 deletions.
20 changes: 0 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ on:
pull_request:
paths_ignore:
- 'docs/**'
- 'examples/**'
- 'dependency_range_tests/**'
- 'environment_tests/**'
- '.github/**'
Expand Down Expand Up @@ -40,22 +39,3 @@ jobs:
run: yarn install --immutable --mode=skip-build
- name: Check linting
run: yarn run lint

platform-compatibility:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: "yarn"
- name: Install dependencies
run: cd ./langchain-core && yarn workspaces focus
- name: Build @langchain/scripts
run: cd ./libs/langchain-scripts && yarn build:internal
- name: Build `@langchain/core`
run: cd ./langchain-core && yarn build:internal
11 changes: 5 additions & 6 deletions .github/workflows/compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@ on:
push:
branches: ["main"]
pull_request:
# Do not run this workflow if only docs/examples changed.
paths-ignore:
- 'docs/**'
- 'examples/**'
- '.github/**'
- '!.github/workflows/compatibility.yml'
# Only run this workflow if the following directories have changed.
paths:
- 'langchain/**'
- 'langchain-core/**'
- 'libs/**'
workflow_dispatch: # Allows triggering the workflow manually in GitHub UI

# If another push to the same PR or branch happens while this workflow is still running,
Expand Down
44 changes: 44 additions & 0 deletions .github/workflows/platform-compatibility.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs

name: Platform Compatibility

on:
pull_request:
# Only run this workflow if the following directories have changed.
paths:
- 'langchain/**'
- 'langchain-core/**'
- 'libs/**'
workflow_dispatch: # Allows triggering the workflow manually in GitHub UI


# 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 }}
cancel-in-progress: true

jobs:
platform-compatibility:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: "yarn"
- name: Install dependencies
run: cd ./langchain-core && yarn workspaces focus
- name: Build @langchain/scripts
run: cd ./libs/langchain-scripts && yarn build:internal
- name: Build `@langchain/core`
run: cd ./langchain-core && yarn build:internal

0 comments on commit 4f5e162

Please sign in to comment.