Skip to content

Commit

Permalink
Add go run commands for database and resize in goBuildMac.yml in orde…
Browse files Browse the repository at this point in the history
…r to create database and resized sprites before running video
  • Loading branch information
joachimbbp committed Mar 11, 2024
1 parent f847f7c commit e78e1ff
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/goBuildMac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,7 @@ jobs:
- name: Change Directory
run: |
cd src/main
go run main.go database
go run main.go resize
go run main.go video
go build
3 changes: 3 additions & 0 deletions devnotes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# KNOWN BUGS
- Program crashes towards the end of large batch jobs
- Once this is fixed, have the CI run a batch (not just video)

# PULL REQUESTS AND CONTRIBUTERS
- feel free to contact [email protected] for any questions

# BLOG:
March 01 2024:
Expand Down
2 changes: 1 addition & 1 deletion src/main/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func main() {
video.Sequence,
util.SequencePath,
util.DatabasePath,
5, //set this to choose the desired resolution. See readme for more
5, //set this to choose the desired resolution. Hard coded at 5 for CI for now
)
case "batchRes":
batchResIndices := []int{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}
Expand Down

0 comments on commit e78e1ff

Please sign in to comment.