Skip to content

Commit

Permalink
Try switching upstream and temporarily disable caches
Browse files Browse the repository at this point in the history
  • Loading branch information
nuwang committed Apr 29, 2024
1 parent e3bead6 commit ee1d3d1
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/test_galaxy_package_integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,21 @@ jobs:
id: full-python-version
shell: bash
run: echo "version=$(python -c 'import sys; print("-".join(str(v) for v in sys.version_info))')" >> $GITHUB_OUTPUT
- name: Cache pip dir
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: pip-cache-${{ matrix.python-version }}-${{ hashFiles('requirements.txt') }}
- name: Cache galaxy venv
uses: actions/cache@v3
with:
path: '.venv'
key: gxy-venv-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('requirements.txt') }}-integration
# - name: Cache pip dir
# uses: actions/cache@v3
# with:
# path: ~/.cache/pip
# key: pip-cache-${{ matrix.python-version }}-${{ hashFiles('requirements.txt') }}
# - name: Cache galaxy venv
# uses: actions/cache@v3
# with:
# path: '.venv'
# key: gxy-venv-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('requirements.txt') }}-integration
- name: Replace tpv galaxy dependencies with package paths from local galaxy build
run: |
GALAXY_SKIP_NODE=1 GALAXY_SKIP_CLIENT_BUILD=1 make setup-venv
# create local release
echo "c" | UPSTREAM_REMOTE_URL="https://github.com/galaxyproject/galaxy.git" ./scripts/release.sh -l
echo "c" | UPSTREAM_REMOTE_URL="https://github.com/nuwang/galaxy.git" ./scripts/release.sh -l
# make requirements point to local wheels where possible
cd tpv
while IFS= read -r line; do
Expand Down

0 comments on commit ee1d3d1

Please sign in to comment.