Skip to content

Commit

Permalink
cache postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
j4qfrost committed Feb 21, 2024
1 parent a18125b commit 6ea9be0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,15 @@ concurrency:

jobs:
smoke:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dart-lang/setup-dart@v1
with:
sdk: dev
- name: Setup Conduit
run: |
dart pub cache postgres
dart pub global activate melos
melos bootstrap
dart pub global activate -spath packages/cli
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
sdk: dev
- name: Setup Conduit
run: |
dart pub cache postgres
dart pub global activate melos
melos bootstrap
dart pub global activate -spath packages/cli
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
sdk: dev
- name: Setup Conduit
run: |
dart pub cache postgres
dart pub global activate melos
dart pub global run melos:melos bootstrap
dart pub global activate -spath packages/cli
Expand Down
1 change: 0 additions & 1 deletion packages/runtime/lib/src/build.dart
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ class Build {
);
if (res.exitCode != 0) {
print("${res.stdout}");
print("${res.stderr}");
throw StateError(
"'pub get' failed with the following message: ${res.stderr}",
);
Expand Down

0 comments on commit 6ea9be0

Please sign in to comment.