mirror of
https://github.com/github/semantic.git
synced 2024-12-24 07:25:44 +03:00
Cleanup this script
This commit is contained in:
parent
d2e4713921
commit
0392c43b45
@ -1,22 +1,15 @@
|
||||
#!/bin/bash
|
||||
#/ Usage: script/clone-example-repos
|
||||
#/
|
||||
#/ Clone some example repositories for smoke testing parsing and assignment
|
||||
#/ Clone some example repositories for smoke testing parsing, assignment, and precise ASTs.
|
||||
#/
|
||||
#/ NOTES:
|
||||
#/ - This script is intended to be called by `test/Examples.hs`
|
||||
#/ - Go and Ruby examples are in submodules
|
||||
#/ - PHP doesn't have any parse-examples
|
||||
#/ - Java and Haskell have good examples, but they have assignment failures so currently aren't tested
|
||||
|
||||
|
||||
set -e
|
||||
cd $(dirname "$0")/..
|
||||
|
||||
# mkdir -p test/examplerepos || true
|
||||
# git clone --single-branch --recurse-submodules https://github.com/tree-sitter/haskell-tree-sitter.git tmp/haskell-tree-sitter || true
|
||||
mkdir -p tmp
|
||||
# dir="tmp/haskell-tree-sitter"
|
||||
|
||||
# clone_repo LOCAL_PATH URL SHA
|
||||
function clone_repo {
|
||||
@ -36,6 +29,10 @@ function clone_repo {
|
||||
popd > /dev/null
|
||||
}
|
||||
|
||||
go_examples="tmp/go-examples"
|
||||
clone_repo "$go_examples/go" golang/go 870e12d7bfaea70fb0d743842f5864eb059cb939
|
||||
clone_repo "$go_examples/moby" moby/moby f57f260b49b6142366e6bc1274204ee0a1205945
|
||||
|
||||
python_examples="tmp/python-examples"
|
||||
clone_repo "$python_examples/numpy" numpy/numpy 058851c5cfc98f50f11237b1c13d77cfd1f40475
|
||||
clone_repo "$python_examples/thealgorithms" thealgorithms/python c6be53e1c43f870f5364eef1499ee1b411c966fb
|
||||
@ -48,6 +45,9 @@ clone_repo "$python_examples/scrapy" scrapy/scrapy 65d631329a1434ec013f24341e4b8
|
||||
clone_repo "$python_examples/pytorch" pytorch/pytorch c865d46736db4afff51690a712e35ed8e3899490
|
||||
clone_repo "$python_examples/certbot" certbot/certbot bb8222200a8cbd39a3ce9584ce6dfed6c5d05228
|
||||
|
||||
ruby_examples="tmp/ruby-examples"
|
||||
clone_repo "$ruby_examples/ruby_spec" ruby/spec c3e6b9017926f44a76e2b966c4dd35fa84c4cd3b
|
||||
|
||||
ts_examples="tmp/typescript-examples"
|
||||
clone_repo "$ts_examples/desktop" desktop/desktop d1324f56d02dd9afca5d2e9da545905a7d41d671
|
||||
clone_repo "$ts_examples/npm" npm/npm ee147fbbca6f2707d3b16f4fa78f4c4606b2d9b1
|
||||
@ -58,13 +58,6 @@ clone_repo "$ts_examples/npm" npm/npm ee147fbbca6f2707d3b16f4fa78f4c4606b2d9b1
|
||||
# clone_repo "$java_examples/RxJava" ReactiveX/RxJava 8a6bf14fc9a61f7c1c0016ca217be02ca86211d2
|
||||
|
||||
# haskell_examples="$dir/tree-sitter-haskell/vendor/tree-sitter-haskell/examples"
|
||||
# # clone_repo "$haskell_examples/effects" joshvera/effects 08f5f36f2600362685af593f4b327e933b60bf97
|
||||
# # clone_repo "$haskell_examples/postgrest" PostgRest/postgrest f80cfbf165f951a062b3cbedac4556019905ca49
|
||||
# # clone_repo "$haskell_examples/ivory" GaloisInc/ivory 3d00324ad1c113c7e70957ff6a6d636d271d0fc4
|
||||
|
||||
# go_examples="$dir/tree-sitter-go/vendor/tree-sitter-go/examples"
|
||||
# clone_repo "$go_examples/go" "golang/go" "870e12d7bfaea70fb0d743842f5864eb059cb939"
|
||||
# clone_repo "$go_examples/moby" "moby/moby" "f57f260b49b6142366e6bc1274204ee0a1205945"
|
||||
|
||||
ruby_examples="tmp/ruby-examples"
|
||||
clone_repo "$ruby_examples/ruby_spec" "ruby/spec" "c3e6b9017926f44a76e2b966c4dd35fa84c4cd3b"
|
||||
# clone_repo "$haskell_examples/effects" joshvera/effects 08f5f36f2600362685af593f4b327e933b60bf97
|
||||
# clone_repo "$haskell_examples/postgrest" PostgRest/postgrest f80cfbf165f951a062b3cbedac4556019905ca49
|
||||
# clone_repo "$haskell_examples/ivory" GaloisInc/ivory 3d00324ad1c113c7e70957ff6a6d636d271d0fc4
|
||||
|
Loading…
Reference in New Issue
Block a user