Skip to content

Commit

Permalink
Merge branch 'pliang-migration' into multireaderfilestream-redesign
Browse files Browse the repository at this point in the history
  • Loading branch information
percyliang committed Oct 25, 2024
2 parents 3e584df + 189ff91 commit 32754cb
Show file tree
Hide file tree
Showing 16 changed files with 601 additions and 341 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_worker_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.9
- uses: actions/cache@v3
with:
path: ~/.cache/pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/postcommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.9
- uses: actions/cache@v3
with:
path: ~/.cache/pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.9
- uses: actions/cache@v3
with:
path: ~/.cache/pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.9
- run: pip install -e .
- name: Run tests
run: python tests/stress/stress_test.py --instance https://worksheets-dev.codalab.org --heavy
Expand Down
41 changes: 21 additions & 20 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 14.x
- name: Set up Python 3.7
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.9
- run: npm ci
working-directory: ./frontend
- run: npm run check-ci
Expand All @@ -36,20 +36,21 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
os: [ubuntu-20.04, macos-latest]
python-version: [3.9]
os: [ubuntu-20.04, macos-13]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v3
with:
path: ~/.cache/pip
key: pip-${{ hashFiles('requirements.txt') }}-${{ matrix.python-version }}
restore-keys: |
pip-
# - uses: actions/cache@v3
# with:
# path: ~/.cache/pip
# key: pip-${{ hashFiles('requirements.txt') }}-${{ matrix.python-version }}
# restore-keys: |
# pip-
- run: pip install --upgrade pip
- run: pip install -e .
- run: cl

Expand Down Expand Up @@ -78,7 +79,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.9
- uses: actions/cache@v3
with:
path: ~/.cache/pip
Expand Down Expand Up @@ -128,7 +129,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.9
- uses: actions/cache@v3
with:
path: ~/.cache/pip
Expand Down Expand Up @@ -198,7 +199,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.9
- uses: actions/cache@v3
with:
path: ~/.cache/pip
Expand Down Expand Up @@ -247,7 +248,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.9
- uses: actions/cache@v3
with:
path: ~/.cache/pip
Expand Down Expand Up @@ -303,7 +304,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.9
- uses: actions/cache@v3
with:
path: ~/.cache/pip
Expand Down Expand Up @@ -352,7 +353,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.9
- uses: actions/cache@v3
with:
path: ~/.cache/pip
Expand Down Expand Up @@ -401,7 +402,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.9
- uses: actions/cache@v3
with:
path: ~/.cache/pip
Expand Down Expand Up @@ -455,7 +456,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.9
- uses: actions/cache@v3
with:
path: ~/.cache/pip
Expand Down Expand Up @@ -521,7 +522,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.9
- uses: actions/cache@v3
with:
path: ~/.cache/pip
Expand Down Expand Up @@ -571,7 +572,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.9
- uses: actions/cache@v3
with:
path: ~/.cache/pip
Expand Down
Loading

0 comments on commit 32754cb

Please sign in to comment.