Skip to content

Commit

Permalink
update mcversions (#82)
Browse files Browse the repository at this point in the history
* update mcversions

* do not fail fast

* Add fix for 1.20.1.
  • Loading branch information
rom1504 authored Dec 29, 2023
1 parent 0e3c257 commit c8f850f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ jobs:
if: github.ref == 'refs/heads/master' #for prs, we use the pr-workflow
strategy:
matrix:
mcVersionIndex: ["1.8", "1.9", "1.10", "1.11", "1.11.2", "1.12", "1.13", "1.14", "1.15", "1.16", "1.16.5", '1.17', '1.18', '1.18.2']

mcVersionIndex: ['1.8.8', '1.9.4', '1.10.2', '1.11.2', '1.12.2', '1.13.2', '1.14.4', '1.15.2', '1.16.5', '1.17.1', '1.18.2', '1.19', '1.19.2', '1.19.3', '1.19.4', '1.20.1']
fail-fast: false

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/pr-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ jobs:
timeout-minutes: 5
strategy:
matrix:
mcVersionIndex: ["1.8", "1.9", "1.10", "1.11", "1.11.2", "1.12", "1.13", "1.14", "1.15", "1.16", "1.16.5"]
mcVersionIndex: ['1.8.8', '1.9.4', '1.10.2', '1.11.2', '1.12.2', '1.13.2', '1.14.4', '1.15.2', '1.16.5', '1.17.1', '1.18.2', '1.19', '1.19.2', '1.19.3', '1.19.4', '1.20.1']
fail-fast: false

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,6 @@ package-lock.json

# output folder of using dumpPackets

output
output

temp/
2 changes: 1 addition & 1 deletion lib/mineflayer-log.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class MineflayerLog {

await this.kindPromise[meta.name]
await fsP.writeFile(path.join(this.outputDirectory, 'from-server', meta.name, '' + n + '.raw'), buffer)
await fsP.writeFile(path.join(this.outputDirectory, 'from-server', meta.name, '' + n + '.json'), JSON.stringify(data, null, 2))
await fsP.writeFile(path.join(this.outputDirectory, 'from-server', meta.name, '' + n + '.json'), data === undefined ? '' : JSON.stringify(data, null, 2))
})
}

Expand Down

0 comments on commit c8f850f

Please sign in to comment.