-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Teo Koon Peng <[email protected]>
- Loading branch information
Showing
5 changed files
with
7 additions
and
15 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 |
---|---|---|
|
@@ -11,13 +11,6 @@ inputs: | |
runs: | ||
using: composite | ||
steps: | ||
- uses: pnpm/[email protected] | ||
with: | ||
version: 'latest' | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: '20' | ||
cache: 'pnpm' | ||
- name: Install dependencies | ||
run: pnpm install -w --filter ${{ inputs.package }}... --no-frozen-lockfile | ||
shell: bash | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,8 @@ | ||
#!/usr/bin/bash | ||
set -e | ||
|
||
cd "$(dirname "$0")/.." | ||
|
||
if [ ! -d .venv ]; then | ||
echo 'creating virtualenv at .venv' | ||
python3 -m venv .venv --system-site-packages --prompt rmf-web | ||
.venv/bin/pip3 install pipenv | ||
fi | ||
|
||
exec .venv/bin/pipenv "$@" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
#!/bin/bash | ||
#!/usr/bin/bash | ||
set -e | ||
|
||
# Wrapper to the locally installed pipenv. | ||
. "$(dirname $0)/../.venv/bin/activate" | ||
pipenv "$@" | ||
exec "$(dirname "$0")/.venv/bin/pipenv" "$@" |