-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into topic/lint-context
- Loading branch information
Showing
513 changed files
with
15,431 additions
and
6,478 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 |
---|---|---|
@@ -1,16 +1,32 @@ | ||
#!/bin/sh | ||
case "$1" in | ||
galaxy|"") | ||
SCRIPT=./run.sh | ||
PORT=8080 | ||
LOGFILE=galaxy.log | ||
;; | ||
reports) | ||
SCRIPT=./run_reports.sh | ||
PORT=9001 | ||
LOGFILE=reports_webapp.log | ||
;; | ||
*) | ||
echo "ERROR: Unrecognized app" | ||
exit 1 | ||
;; | ||
esac | ||
TRIES=120 | ||
URL=http://localhost:8080 | ||
URL=http://localhost:$PORT | ||
EXIT_CODE=1 | ||
i=0 | ||
echo "Testing for correct startup:" | ||
bash run.sh --daemon && \ | ||
$SCRIPT --daemon && \ | ||
while [ "$i" -le $TRIES ]; do | ||
curl --max-time 1 "$URL" && EXIT_CODE=0 && break | ||
sleep 1 | ||
i=$((i + 1)) | ||
done | ||
bash run.sh --skip-wheels --stop-daemon | ||
$SCRIPT --skip-wheels --stop-daemon | ||
echo "exit code:$EXIT_CODE, showing startup log:" | ||
cat galaxy.log | ||
cat "$LOGFILE" | ||
exit $EXIT_CODE |
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 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 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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Reports startup | ||
on: | ||
push: | ||
paths-ignore: | ||
- 'doc/**' | ||
pull_request: | ||
paths-ignore: | ||
- 'doc/**' | ||
env: | ||
YARN_INSTALL_OPTS: --frozen-lockfile | ||
concurrency: | ||
group: reports-startup-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
|
||
test: | ||
name: Reports startup test | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ['3.7', '3.10'] | ||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
path: 'galaxy root' | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Get full Python version | ||
id: full-python-version | ||
shell: bash | ||
run: echo ::set-output name=version::$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))") | ||
- name: Cache pip dir | ||
uses: actions/cache@v1 | ||
id: pip-cache | ||
with: | ||
path: ~/.cache/pip | ||
key: pip-cache-${{ matrix.python-version }}-${{ hashFiles('galaxy root/requirements.txt') }} | ||
- name: Cache tox env | ||
uses: actions/cache@v2 | ||
with: | ||
path: .tox | ||
key: tox-cache-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('galaxy root/requirements.txt') }}-reports-startup | ||
- uses: mvdbeek/gha-yarn-cache@master | ||
with: | ||
yarn-lock-file: 'galaxy root/client/yarn.lock' | ||
- name: Install tox | ||
run: pip install tox | ||
- name: run tests | ||
run: tox -e reports_startup | ||
working-directory: 'galaxy root' |
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,25 @@ | ||
name: Test Galaxy release script | ||
on: | ||
push: | ||
paths: | ||
- lib/galaxy/version.py | ||
- scripts/release.sh | ||
- test/release.sh | ||
pull_request: | ||
paths: | ||
- lib/galaxy/version.py | ||
- scripts/release.sh | ||
- test/release.sh | ||
concurrency: | ||
group: test-galaxy-release-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
test: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Run tests | ||
run: ./test/release.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 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 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 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
Oops, something went wrong.