File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2929 apt-get -y -qq update
3030 apt-get install -y build-essential tcl git-lfs
3131 - uses : actions/checkout@v4
32+ if : ${{ needs.pre_job.outputs.should_skip != 'true' }}
3233 with :
3334 lfs : true
3435 - name : Build SQLite 3.25.3
@@ -45,12 +46,14 @@ jobs:
4546 # Once we have confirmed that this works, set it for subsequent steps
4647 echo "LD_PRELOAD=$(realpath .libs/libsqlite3.so)" >> $GITHUB_ENV
4748 - uses : actions/cache@v4
49+ if : ${{ needs.pre_job.outputs.should_skip != 'true' }}
4850 with :
4951 path : ~/.cache/pip
5052 key : ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}
5153 restore-keys : |
5254 ${{ runner.os }}-pip-
5355 - name : Install dependencies
56+ if : ${{ needs.pre_job.outputs.should_skip != 'true' }}
5457 run : pip install .
5558 - name : Run migrations
5659 if : ${{ needs.pre_job.outputs.should_skip != 'true' }}
You can’t perform that action at this time.
0 commit comments