-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to pants as build system (#199)
- Loading branch information
1 parent
327ac2f
commit 42316c2
Showing
162 changed files
with
12,847 additions
and
4,239 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,10 +7,4 @@ gcloud config set account [email protected] | |
|
||
echo --- Installing dependencies | ||
|
||
eval "$(pyenv init --path)" | ||
eval "$(pyenv init -)" | ||
|
||
${PDM_COMMAND:1:-1} use ${PYTHON_VERSION:1:-1} | ||
${PDM_COMMAND:1:-1} install --plugins | ||
${PDM_COMMAND:1:-1} install -d -G ci | ||
${PDM_COMMAND:1:-1} torch install cpu | ||
./get-pants.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Build docs | ||
|
||
on: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
env: | ||
PANTS_BACKEND_PACKAGES: '-["pants.backend.python.providers.experimental.pyenv"]' | ||
PANTS_VERIFY_CONFIG: false | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Generate docs | ||
uses: ./.github/workflows/docs |
Oops, something went wrong.