Skip to content

Commit 92eab1d

Browse files
committed
clean up GA script
1 parent d647fc8 commit 92eab1d

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- uses: actions/checkout@v4
3333
with:
3434
repository: 'ActivitySim/activitysim'
35-
ref: preview
35+
ref: main
3636
path: 'activitysim'
3737
fetch-depth: 0 # get all tags, lets setuptools_scm do its thing
3838

@@ -50,22 +50,21 @@ jobs:
5050

5151
- uses: actions/cache@v4
5252
with:
53-
path: /usr/share/miniconda3/envs/asim-test
53+
path: miniconda3/envs/asim-test
5454
key: linux-64-conda-${{ hashFiles('activitysim/conda-environments/github-actions-tests.yml') }}-${{ env.DATE }}-${{ env.CACHE_NUMBER }}
5555
id: cache
5656

5757
- name: Update environment
5858
run: |
5959
mamba env update -n asim-test -f activitysim/conda-environments/github-actions-tests.yml
60-
mamba install -c conda-forge c-blosc2
6160
if: steps.cache.outputs.cache-hit != 'true'
6261

6362
- name: Install activitysim
6463
# installing without dependencies is faster, we trust that all needed dependencies
6564
# are in the conda environment defined above. Also, this avoids pip getting
6665
# confused and reinstalling tables (pytables).
6766
run: |
68-
python -m pip install -e ./activitysim --no-deps
67+
python -m pip install ./activitysim --no-deps
6968
- name: Conda checkup
7069
run: |
7170
mamba info -a

0 commit comments

Comments
 (0)