Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
b4a5e12
make it sync, update to 26.2 and update flint-core
coco875 Jun 23, 2026
2ec8eec
Update FlintBenchmark
coco875 Jun 23, 2026
cc9a241
output a link
coco875 Jun 23, 2026
30f43a5
fix thing
coco875 Jun 23, 2026
4a527d7
lint
coco875 Jun 24, 2026
80cd1a5
Update FlintBenchmark
coco875 Jun 24, 2026
d8277c7
update flint core
coco875 Jun 24, 2026
a668b95
fmt
coco875 Jun 24, 2026
4d1301e
update CI
coco875 Jun 24, 2026
35c4c55
Update FlintBenchmark
coco875 Jun 24, 2026
5c6fb86
Update test.yml
coco875 Jun 24, 2026
d30960d
adjust link
coco875 Jun 24, 2026
789ed0c
forget a crucial part in the link
coco875 Jun 24, 2026
67bd48b
truly fix cli now
coco875 Jun 24, 2026
1c79af6
Update test.yml
coco875 Jun 24, 2026
dc62359
force loading
coco875 Jun 24, 2026
511aee5
multiple change
coco875 Jul 9, 2026
cdde23d
update to flint core
coco875 Jul 10, 2026
361dfe0
deduplicate entity_matches
coco875 Jul 10, 2026
0b4f297
update flint core
coco875 Jul 11, 2026
d13906e
Update test.yml
coco875 Jul 11, 2026
cea1f21
multiple change
coco875 Jul 11, 2026
72c776d
try a fix
coco875 Jul 11, 2026
1e4aaab
Update bot.rs
coco875 Jul 12, 2026
22b22a2
Update tick.rs
coco875 Jul 12, 2026
ea11c89
improve code
coco875 Jul 12, 2026
2816a46
Update test.yml
coco875 Jul 12, 2026
d2cb1d7
Update FlintBenchmark
coco875 Jul 12, 2026
e14c611
Update adapter.rs
coco875 Jul 12, 2026
d035dfa
do a better way to observe
coco875 Jul 12, 2026
3fa5ef4
Update mod.rs
coco875 Jul 12, 2026
166a143
fix interaction
coco875 Jul 12, 2026
0b33935
Update bot.rs
coco875 Jul 12, 2026
525d262
try make interaction more stable
coco875 Jul 12, 2026
1a79a77
not use release in CI
coco875 Jul 12, 2026
af44cd7
make set_block_checked more sync
coco875 Jul 12, 2026
07c2c66
wait more
coco875 Jul 12, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
submodules: "true"

- name: Set up Java
uses: actions/setup-java@v4
Expand Down Expand Up @@ -42,7 +44,7 @@ jobs:
mkdir -p minecraft-server
cd minecraft-server
# Download Fabric 26.1.2 (latest compatible version)
wget -O server.jar https://meta.fabricmc.net/v2/versions/loader/26.1.2/0.19.2/1.1.1/server/jar
wget -O server.jar https://meta.fabricmc.net/v2/versions/loader/26.2/0.19.3/1.1.1/server/jar
echo "eula=true" > eula.txt

- name: Configure Minecraft Server
Expand All @@ -55,6 +57,8 @@ jobs:
broadcast-console-to-ops=true
broadcast-rcon-to-ops=true
bug-report-link=
chat-spam-threshold-seconds=0
command-spam-threshold-seconds=0
difficulty=easy
enable-code-of-conduct=false
enable-jmx-monitoring=false
Expand Down Expand Up @@ -108,14 +112,14 @@ jobs:
resource-pack-sha1=
server-ip=
server-port=25565
simulation-distance=10
simulation-distance=16
spawn-protection=16
status-heartbeat-interval=0
sync-chunk-writes=true
text-filtering-config=
text-filtering-version=0
use-native-transport=true
view-distance=10
view-distance=16
white-list=false
EOF

Expand Down Expand Up @@ -151,12 +155,12 @@ jobs:
sleep 2

- name: Build FlintMC
run: cargo build --release
run: cargo build

- name: Run FlintMC Tests
run: |
# Run all example tests
cargo run --release -- example_tests/ --server localhost:25565 --recursive --verbose
cargo run -- FlintBenchmark/tests/ --server localhost:25565 --recursive --verbose
timeout-minutes: 10

- name: Stop Minecraft Server
Expand Down
Loading
Loading