Skip to content

Commit

Permalink
chore: some missing CI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
alecthomas committed Mar 19, 2024
1 parent cc18bf3 commit f57b044
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Docker Compose
run: docker compose up -d --wait
- name: Initialise database
run: ftl-initdb --recreate
run: just init-db
- name: Vet SQL
run: sqlc vet
lint:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ jobs:
# New version of "sqlc generate" needs the DB up for some unknown reason
run: docker compose up -d --wait
- name: Init DB
run: ftl-initdb
run: just init-db
- name: Rebuild All
run: just build-all
4 changes: 2 additions & 2 deletions .github/workflows/writecache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
- name: Docker Compose
run: docker compose up -d --wait
- name: Init DB
run: ftl-initdb
run: just init-db
- name: Rebuild All
run: bit build-all
run: just build-all
- name: Download Maven Dependencies
run: mvn -f kotlin-runtime/ftl-runtime dependency:resolve --batch-mode
- name: Download Go Dependencies
Expand Down

0 comments on commit f57b044

Please sign in to comment.