mirror of
https://github.com/langflow-ai/langflow.git
synced 2026-07-23 20:22:46 +08:00
Merge branch 'docs-remove-yarn-and-just-use-npm' of https://github.com/langflow-ai/langflow into docs-remove-yarn-and-just-use-npm
This commit is contained in:
20
.github/workflows/cross-platform-test.yml
vendored
20
.github/workflows/cross-platform-test.yml
vendored
@ -145,6 +145,16 @@ jobs:
|
||||
enable-cache: false
|
||||
ignore-empty-workdir: true
|
||||
|
||||
- name: Install Protocol Buffers (macOS AMD64)
|
||||
if: matrix.os == 'macos' && matrix.arch == 'amd64'
|
||||
run: |
|
||||
if ! command -v protoc &> /dev/null; then
|
||||
brew install protobuf
|
||||
else
|
||||
echo "protoc already installed, skipping"
|
||||
fi
|
||||
shell: bash
|
||||
|
||||
# Download artifacts for wheel installation
|
||||
- name: Download LFX package artifact
|
||||
if: steps.install-method.outputs.method == 'wheel' && inputs.lfx-artifact-name != ''
|
||||
@ -433,6 +443,16 @@ jobs:
|
||||
enable-cache: false
|
||||
ignore-empty-workdir: true
|
||||
|
||||
- name: Install Protocol Buffers (macOS AMD64)
|
||||
if: matrix.os == 'macos' && matrix.arch == 'amd64'
|
||||
run: |
|
||||
if ! command -v protoc &> /dev/null; then
|
||||
brew install protobuf
|
||||
else
|
||||
echo "protoc already installed, skipping"
|
||||
fi
|
||||
shell: bash
|
||||
|
||||
# Download artifacts for wheel installation
|
||||
- name: Download LFX package artifact
|
||||
if: steps.install-method.outputs.method == 'wheel' && inputs.lfx-artifact-name != ''
|
||||
|
||||
2
.github/workflows/nightly_build.yml
vendored
2
.github/workflows/nightly_build.yml
vendored
@ -214,7 +214,7 @@ jobs:
|
||||
# ref: ${{ needs.create-nightly-tag.outputs.tag }}
|
||||
|
||||
release-nightly-build:
|
||||
if: github.repository == 'langflow-ai/langflow' && (needs.frontend-tests.result == 'success' || needs.frontend-tests.result == 'skipped') && (needs.backend-unit-tests.result == 'success' || needs.backend-unit-tests.result == 'skipped')
|
||||
if: github.repository == 'langflow-ai/langflow' && always() && needs.frontend-tests.result != 'failure' && needs.backend-unit-tests.result != 'failure'
|
||||
name: Run Nightly Langflow Build
|
||||
needs: [create-nightly-tag, frontend-tests, backend-unit-tests]
|
||||
uses: ./.github/workflows/release_nightly.yml
|
||||
|
||||
Reference in New Issue
Block a user