Skip to content

cargo vendor 🚚 on - fix buck build Summary: Was getting build errors fbcode/python/errpy/vendor/tree-sitter-python/src/parser.c:8930:3: error: variable 'eof' set but not used [-Werror,-Wunused-but-set-variable] START_LEXER(); ^ fbcode/python/errpy/vendor/tree-sitter-python/src/tree_sitter/parser.h:136:8: note: expanded from macro 'START_LEXER' bool eof = false; \ ^ 1 error generated. Reviewed By: stroxler Differential Revision: D58826878 fbshipit-source-id: 6adb9d... #103

cargo vendor 🚚 on - fix buck build Summary: Was getting build errors fbcode/python/errpy/vendor/tree-sitter-python/src/parser.c:8930:3: error: variable 'eof' set but not used [-Werror,-Wunused-but-set-variable] START_LEXER(); ^ fbcode/python/errpy/vendor/tree-sitter-python/src/tree_sitter/parser.h:136:8: note: expanded from macro 'START_LEXER' bool eof = false; \ ^ 1 error generated. Reviewed By: stroxler Differential Revision: D58826878 fbshipit-source-id: 6adb9d...

cargo vendor 🚚 on - fix buck build Summary: Was getting build errors fbcode/python/errpy/vendor/tree-sitter-python/src/parser.c:8930:3: error: variable 'eof' set but not used [-Werror,-Wunused-but-set-variable] START_LEXER(); ^ fbcode/python/errpy/vendor/tree-sitter-python/src/tree_sitter/parser.h:136:8: note: expanded from macro 'START_LEXER' bool eof = false; \ ^ 1 error generated. Reviewed By: stroxler Differential Revision: D58826878 fbshipit-source-id: 6adb9d... #103

Workflow file for this run

on:
push:
branches:
- main
name: cargo vendor and commit
run-name: cargo vendor 🚚 on - ${{ github.event.head_commit.message }}
jobs:
cargo_vendor:
runs-on: ubuntu-latest
steps:
- name: Delete release branch
uses: dawidd6/action-delete-branch@v3
with:
soft_fail: true # set to true so that if the branch doesn't exist action doesnt fail
branches: release
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@stable
- run: cargo vendor vendor_external
- name: Create .cargo dir
run: |
mkdir -p .cargo
- name: Create cargo config
shell: bash
run: |
cat << EOF > .cargo/config.toml
[source.crates-io]
replace-with = "vendored-sources"
[source.vendored-sources]
directory = "vendor_external"
EOF
- name: commit to 'new' release branch
uses: EndBug/[email protected]
with:
new_branch: release
author_name: GitHub Action
author_email: [email protected]