Skip to content

Commit

Permalink
test: pin sqlite to 5.0.0 for faster install
Browse files Browse the repository at this point in the history
  • Loading branch information
Jolg42 committed Jan 20, 2021
1 parent c0a0bca commit 47be5a9
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jobs:
SKIP_GIT: true
GITHUB_CONTEXT: ${{ toJson(github) }}

- run: pnpm i [email protected] --unsafe-perm --reporter=silent
- run: pnpm i [email protected].0 --unsafe-perm --reporter=silent
if: ${{ matrix.database == 'sqlite' }}
working-directory: src/packages/tests

Expand Down Expand Up @@ -398,7 +398,7 @@ jobs:
SKIP_GIT: true
GITHUB_CONTEXT: ${{ toJson(github) }}

- run: pnpm i [email protected] --unsafe-perm --reporter=silent
- run: pnpm i [email protected].0 --unsafe-perm --reporter=silent
working-directory: src/packages/cli

- run: pnpm run test
Expand Down
2 changes: 1 addition & 1 deletion src/.buildkite/publish/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pnpm i --no-prefer-frozen-lockfile
pnpm run setup

cd packages/tests
pnpm i [email protected] --unsafe-perm --reporter=silent
pnpm i [email protected].0 --unsafe-perm --reporter=silent
cd ../..

pnpm run test
Expand Down
2 changes: 1 addition & 1 deletion src/.buildkite/test/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pnpm run setup
# Only run this for job 0
if [ "$BUILDKITE_PARALLEL_JOB" = "0" ]; then
cd packages/tests
pnpm i [email protected] --unsafe-perm --reporter=silent
pnpm i [email protected].0 --unsafe-perm --reporter=silent
cd ../..
fi

Expand Down
2 changes: 1 addition & 1 deletion src/packages/migrate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"pg": "8.5.1",
"prettier": "2.2.1",
"sqlite-async": "1.1.1",
"sqlite3": "5.0.1",
"sqlite3": "5.0.0",
"tempy": "1.0.0",
"ts-jest": "26.4.4",
"typescript": "4.1.3"
Expand Down
2 changes: 1 addition & 1 deletion src/packages/tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"prettier": "2.1.2",
"replace-string": "^3.1.0",
"sqlite-async": "^1.1.1",
"sqlite3": "5.0",
"sqlite3": "5.0.0",
"string-hash": "^1.1.3",
"strip-ansi": "6.0.0",
"tempy": "^1.0.0",
Expand Down

0 comments on commit 47be5a9

Please sign in to comment.