Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
05d5a17
don't store raw_props that we don't need
icewind1991 Sep 8, 2023
5e771e5
minor prop bit count cleanup
icewind1991 Sep 8, 2023
cfd5140
player count fix wip
icewind1991 Sep 8, 2023
d20fbb8
list pauses in parser json output
icewind1991 Dec 21, 2023
07039da
switch to cargo-insta for snapshot testing
icewind1991 Dec 21, 2023
e8e76e9
0.5.0
icewind1991 Dec 22, 2023
ecc268b
update deps
icewind1991 Dec 23, 2023
3df5471
flake updates
icewind1991 Dec 23, 2023
cf4caa0
clippy fix
icewind1991 Dec 24, 2023
7ed264c
fmt + cargo update
icewind1991 Jan 4, 2024
2b01b3b
better json serialize for event type
icewind1991 Jan 29, 2024
8da83b7
add missing disaply
icewind1991 Jan 29, 2024
c08f30a
explicit event type to event message
icewind1991 Jan 29, 2024
1a549b7
merge codegen into main crate
icewind1991 Jan 31, 2024
cc83dce
newer demo for codegen
icewind1991 Jan 31, 2024
493c954
update generated code
icewind1991 Jan 31, 2024
a3a319c
fix nix
icewind1991 Jan 31, 2024
85b82b2
workflow updates
icewind1991 Jan 31, 2024
f38e4ca
update schema
icewind1991 Jan 31, 2024
042481b
fix schema for GameEventType
icewind1991 Feb 2, 2024
d9ff9d4
fix schema for SendPropIdentifier
icewind1991 Feb 2, 2024
217211f
show server send messages as chat
icewind1991 Mar 29, 2024
a732a11
0.5.1
icewind1991 Mar 29, 2024
198ce2f
schemars from git
icewind1991 Mar 29, 2024
2449c96
disable lto ☹
icewind1991 Mar 29, 2024
1682edb
nix: only build parser
icewind1991 Mar 29, 2024
7ef7349
fix hydra job
icewind1991 Apr 5, 2024
0b99f71
don't run tests on aarch64 hydra
icewind1991 Apr 5, 2024
490b4a0
bumb dependencies
icewind1991 Apr 7, 2024
a7a8318
clippy fixes
icewind1991 Apr 7, 2024
e0ec7db
proper baseline index type
icewind1991 Apr 7, 2024
1d71aa8
remove some slice indexing
icewind1991 Apr 7, 2024
9d38663
don't panic in nullhasher misuse
icewind1991 Apr 7, 2024
dfd0b8a
cleanup sendprop array/vector comparisons
icewind1991 Apr 7, 2024
8ff5e5e
specify msrv
icewind1991 Apr 7, 2024
ab87b34
make gameevent parsing more backwards compatible
icewind1991 Apr 16, 2024
6ab8268
Merge upstream ab87b34
Apr 23, 2024
448e22b
complete merge oopsies
Apr 23, 2024
b35daf5
store classlist as u16s
icewind1991 May 4, 2024
c2985d1
upstream schemars
icewind1991 May 6, 2024
4e6d6e4
move nix
icewind1991 May 6, 2024
f8651c2
add ci job to check if schema is up to date
icewind1991 May 6, 2024
a7f3f41
update schema
icewind1991 May 6, 2024
dd3cd63
fix schema for serde_repr usage
icewind1991 May 6, 2024
490ebae
clippy fixes
icewind1991 May 6, 2024
0aaf5db
nix fmt
icewind1991 May 6, 2024
ab33fca
Upstream merge again
May 27, 2024
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
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,19 @@ jobs:
authToken: '${{ secrets.ATTIC_TOKEN }}'
- run: nix build .#clippy

msrv:
runs-on: ubuntu-latest
needs: check
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v25
- uses: icewind1991/attic-action@v1
with:
name: ci
instance: https://cache.icewind.me
authToken: '${{ secrets.ATTIC_TOKEN }}'
- run: nix build .#msrv

matrix:
runs-on: ubuntu-latest
outputs:
Expand Down Expand Up @@ -78,3 +91,19 @@ jobs:
instance: https://cache.icewind.me
authToken: '${{ secrets.ATTIC_TOKEN }}'
- run: nix build .#test

check-schema:
runs-on: ubuntu-latest
needs: check
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v25
- uses: icewind1991/attic-action@v1
with:
name: ci
instance: https://cache.icewind.me
authToken: '${{ secrets.ATTIC_TOKEN }}'
- run: nix run .#demostf-parser-schema > schema.json
- run: |
git diff
git diff-index --quiet HEAD --
Loading