Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SWIMv2 #389

Merged
merged 435 commits into from
Apr 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
435 commits
Select commit Hold shift + click to select a range
d83a540
Fix
Geetis Mar 13, 2024
15f7489
Clippy fixes
Geetis Mar 13, 2024
1f5a6ff
Fix editor and console/datapath sometimes overlapping for a few pixels
brooksmckinley Mar 13, 2024
28b3673
MIPS as default
Geetis Mar 13, 2024
f6d8ee7
Lowercase assembly example file
Geetis Mar 13, 2024
2242acf
Merge pull request #355 from SWIM-ucf/risc-v-parser
brooksmckinley Mar 13, 2024
7d8d888
Hex editor updates text model on re-render
cayb0rg Mar 15, 2024
c01d049
Merge branch 'swim-v2' of github.com:SWIM-ucf/SWIM into debugger-ui
cayb0rg Mar 15, 2024
f59534c
Formatting
cayb0rg Mar 15, 2024
df0b107
Add Stack Segment view
cayb0rg Mar 15, 2024
f3d6315
Added RISC-V core to emulation_core.rs
rharding8 Mar 15, 2024
6d5daec
Re-adds parsing at every step-type execution or memory update, starts…
cayb0rg Mar 21, 2024
48a7df8
Track jump instructions
cayb0rg Mar 22, 2024
9d434b5
Revert "Added RISC-V core to emulation_core.rs"
brooksmckinley Mar 22, 2024
7db1788
Merge pull request #353 from SWIM-ucf/debugger-ui
brooksmckinley Mar 22, 2024
acbc17f
Merge branch 'swim-v2' into console-input
brooksmckinley Mar 22, 2024
e69b20e
Re-color prompt in console input
brooksmckinley Mar 22, 2024
fec10f1
Fix footer elements growing unnecessarily on input
brooksmckinley Mar 22, 2024
49e524b
Fix updates not sending when executing normally
brooksmckinley Mar 22, 2024
b9e9988
Merge pull request #356 from SWIM-ucf/console-input
brooksmckinley Mar 22, 2024
a42db4f
Added basic syscall functionality and
rharding8 Mar 24, 2024
b24043c
Merge branch 'swim-v2' of github.com:SWIM-ucf/SWIM into stack-segment
cayb0rg Mar 24, 2024
efa6a73
Update rust version to 1.73 to support bumpalo
cayb0rg Mar 24, 2024
e214284
Add more info in stack frame
cayb0rg Mar 25, 2024
8f2e570
Implement set and remove breakpoint functions in the communicator
brooksmckinley Mar 25, 2024
c6fb266
Implement UI breakpoints on the emulator core thread
brooksmckinley Mar 25, 2024
0665da8
Got program to compile with the RISC-V core. Added
rharding8 Mar 25, 2024
dbb5674
Fix reset causing panic in UI
cayb0rg Mar 25, 2024
76b1f8e
Fix styling
cayb0rg Mar 25, 2024
a73537d
Fixed Cargo FMT and Clippy Errors.
rharding8 Mar 25, 2024
858bf1e
Fix breakpoints disappearing on tab switch
brooksmckinley Mar 25, 2024
eb8a972
Fixed more Cargo FMT errors.
rharding8 Mar 25, 2024
fc333d6
Removed memory.rs from RISC-V core, using MIPS
rharding8 Mar 25, 2024
f8e299f
Fix breakpoints preventing execution forever
brooksmckinley Mar 25, 2024
3d89675
Fix line numbers misaligning in text segment view
brooksmckinley Mar 25, 2024
7dbc1d1
Merge pull request #359 from SWIM-ucf/riscv-syscalls
brooksmckinley Mar 25, 2024
e3e00ec
Add label to stack frame
cayb0rg Mar 25, 2024
5820eaf
Implemented CSRRW and CSRRWI instructions.
rharding8 Mar 25, 2024
31c3cd7
Reset breakpoints on assemble/reset
brooksmckinley Mar 25, 2024
b8a0e0a
Merge branch 'swim-v2' into ui-breakpoints
brooksmckinley Mar 25, 2024
6320274
Fix build with new risc-v core
brooksmckinley Mar 25, 2024
21c8ba3
Implemented CSRRS, CSRRC, CSRRSI, and CSRRCI
rharding8 Mar 25, 2024
1397567
Implement the SetCore command in the agent
brooksmckinley Mar 25, 2024
36f1aad
Removed Memory Model Constant and I-Type option,
rharding8 Mar 25, 2024
4bc59a0
Implement all new non-FP datapath functionality in the RISC-V core
brooksmckinley Mar 25, 2024
ed6d9c7
Move stack push/pop operation, track function calls only, fix speed n…
cayb0rg Mar 26, 2024
3c44674
Show correct architecture type and change rust version
cayb0rg Mar 26, 2024
2404dd0
Merge branch 'swim-v2' of github.com:SWIM-ucf/SWIM into stack-segment
cayb0rg Mar 26, 2024
01309f2
Implement all new non-FP datapath functionality in the RISC-V core
brooksmckinley Mar 26, 2024
910669a
Switch to unique names in RISC-V structs used outside of the datapath
brooksmckinley Mar 26, 2024
a22b2a4
Fix typo in agent.rs
brooksmckinley Mar 26, 2024
7614ef2
Add update messages for RISC-V and the calls to send them
brooksmckinley Mar 26, 2024
a30901e
Actually implement PrintString command
brooksmckinley Mar 26, 2024
1847476
Merge pull request #361 from SWIM-ucf/riscv-csrs
rharding8 Mar 26, 2024
7fcf294
Fix the store calls failing on ReadString
brooksmckinley Mar 26, 2024
dfce57b
Merge pull request #360 from SWIM-ucf/ui-breakpoints
brooksmckinley Mar 26, 2024
ea7f31e
Allow switching the architecture from the dropdown
brooksmckinley Mar 27, 2024
fad1f4e
Add generic interface for interacting with register structs
brooksmckinley Mar 27, 2024
b21a4ff
Display RISC-V GP registers on the UI based on architecture selection
brooksmckinley Mar 27, 2024
f482e7b
Display line highlighting from the RISC-V pc
brooksmckinley Mar 27, 2024
65e9d5c
Integrate RISC-V into memory view
brooksmckinley Mar 27, 2024
f6b6e53
Clean unused imports
brooksmckinley Mar 27, 2024
f884db2
Merge branch 'swim-v2' into riscv-integration
brooksmckinley Mar 27, 2024
031b38b
Fix formatting
brooksmckinley Mar 27, 2024
ca05002
Merge pull request #362 from SWIM-ucf/print-string
brooksmckinley Mar 27, 2024
b3d29c8
Add back parser on execute so assembled views/stack frame is updated …
cayb0rg Mar 27, 2024
5297c92
Merge branch 'swim-v2' of github.com:SWIM-ucf/SWIM into stack-segment
cayb0rg Mar 27, 2024
94a7eef
Additional merging
cayb0rg Mar 27, 2024
a4a3519
Update executed line + hex editor line on continuous execution
cayb0rg Mar 27, 2024
9cbf097
Move stack one directory up
cayb0rg Mar 27, 2024
ccd3666
Remove useless defaultValue prop on select
brooksmckinley Mar 27, 2024
879d24b
Fix clippy errors in UI
cayb0rg Mar 27, 2024
8ac8e65
Throttle update sending when executing as fast as possible
brooksmckinley Mar 27, 2024
3978d4a
Fix clippy errors in parser
cayb0rg Mar 27, 2024
d49f82c
Display RISC-V stages on the visual datapath
brooksmckinley Mar 27, 2024
ae24ef8
Prevent executed line from appearing on assemble
cayb0rg Mar 27, 2024
d0ba6b6
Replace datapath_state prop in console with messages
cayb0rg Mar 27, 2024
0d9adfd
Clippy police
cayb0rg Mar 27, 2024
f714028
Merge pull request #364 from SWIM-ucf/riscv-integration
cayb0rg Mar 27, 2024
818804d
Fix visual datapath popup overflowing window
brooksmckinley Mar 27, 2024
e78e6be
Merge branch 'swim-v2' of github.com:SWIM-ucf/SWIM into stack-segment
cayb0rg Mar 27, 2024
d8d1359
Cargo fmt
cayb0rg Mar 27, 2024
c4d688a
Fixed ECALL instruction
rharding8 Mar 27, 2024
d77288e
Updated with ECALL fix from SWIM-v2
rharding8 Mar 27, 2024
c09941b
Add RISC-V support to the stack viewer
brooksmckinley Mar 27, 2024
af693bd
Added Coprocessor. Implemented instruction_decode.
rharding8 Mar 27, 2024
c0fa1ed
Merge pull request #357 from SWIM-ucf/stack-segment
cayb0rg Mar 27, 2024
df3b13b
Merge branch 'swim-v2' into worker-message-throttling
brooksmckinley Mar 27, 2024
0c6e4f2
Fix syscalls triggering multiple times when executing as fast as poss…
brooksmckinley Mar 27, 2024
930ec9d
Fix fibonacci example to actually halt at the end
brooksmckinley Mar 27, 2024
23213e5
Updated Datapath logic for FPU and implemented FLW
rharding8 Mar 28, 2024
7dbadeb
Implemented FSW all the way. Still errors.
rharding8 Mar 28, 2024
4e993b8
RV32M and RV64M support
Geetis Mar 28, 2024
24b1342
Merge pull request #365 from SWIM-ucf/worker-message-throttling
brooksmckinley Mar 28, 2024
f5c369a
Added logic for Floating Point Addition,
rharding8 Mar 28, 2024
b2640dc
Add RISCV binary-to-string conversion
cayb0rg Mar 28, 2024
108016f
Merge branch 'swim-v2' of github.com:SWIM-ucf/SWIM into riscv-string-…
cayb0rg Mar 28, 2024
e1532c9
Implemented Sqrt function and fixed funct7 match
rharding8 Mar 28, 2024
4d753d1
Implemented FMIN and FMAX.
rharding8 Mar 28, 2024
d436914
Implemented Conversion from Float Registers
rharding8 Mar 28, 2024
bfac4a2
Implemented conversion from Integer Registers
rharding8 Mar 28, 2024
4de6fa9
Fixed formatting.
rharding8 Mar 28, 2024
7356d31
Implemented Sign-Injection functions.
rharding8 Mar 28, 2024
fe5ec47
Merge pull request #366 from SWIM-ucf/M-Extension
brooksmckinley Mar 28, 2024
e578a95
Implemented FCMP instructions.
rharding8 Mar 28, 2024
53af4bf
Added FCLASS.
rharding8 Mar 28, 2024
9d78bd1
Implemented Fused Multiplication Instructions (R4s)
rharding8 Mar 29, 2024
7b28864
Merged risc-v-parser and fixed branching and jumping instructions
Geetis Mar 29, 2024
9920485
Fixed branching and jump instructions
Geetis Mar 29, 2024
5fd4c73
Fixed the Floating Point inputs and outputs to 32
rharding8 Mar 29, 2024
918a831
Add an imm_input field for displaying the part of the instruction imm…
brooksmckinley Mar 29, 2024
dc7adcf
Updated test cases to reflect branch instruction changes
Geetis Mar 29, 2024
05ea414
Implemented Final Float Instructions.
rharding8 Mar 29, 2024
23821d2
Removed pointless functions and control signals.
rharding8 Mar 29, 2024
6ae78b7
Merge branch 'swim-v2' into riscv-fpu
rharding8 Mar 29, 2024
30b4886
Add RISC-V datapath drawio/svg files
brooksmckinley Mar 29, 2024
f1fccd9
Fix up RISC-V datapath to actually work
brooksmckinley Mar 29, 2024
66e5a8c
Fatten up the MIPS datapaths
brooksmckinley Mar 29, 2024
ab06eff
Fix up some visual issues with the RISC-V datapath
brooksmckinley Mar 29, 2024
e049880
Fixed issues. Every instruction aside from FLW is
rharding8 Mar 29, 2024
f81a840
One instruction was wrong. Fixed now.
rharding8 Mar 29, 2024
dcf96c5
Fix RISC-V visual datapath displaying information from the MIPS core
brooksmckinley Mar 29, 2024
d922365
Merge branch 'swim-v2' into riscv-visual-datapath
brooksmckinley Mar 29, 2024
7428f07
Fixed sign extension
Geetis Mar 29, 2024
8d25bf6
Address clippy warnings
brooksmckinley Mar 29, 2024
bb6b004
Fixed my idiotic programming. Everything works now
rharding8 Mar 29, 2024
e35fa7b
Fixed final instructions.
rharding8 Mar 29, 2024
754bf2d
Call and tail pseudo-instructions
Geetis Mar 29, 2024
ecf76fd
Connect the FP registers to the visual display
brooksmckinley Mar 29, 2024
ded6ffd
Merge pull request #368 from SWIM-ucf/riscv-fpu
rharding8 Mar 29, 2024
953a311
Avoid highlighting the first line at the end of execution
brooksmckinley Mar 29, 2024
af5afa8
Sign-extend S-type and adjust riscv_fib
Geetis Mar 29, 2024
fd41797
Merge pull request #369 from SWIM-ucf/riscv-branch-jump
Geetis Mar 29, 2024
0d1076d
Fixed my stupid coprocessor.
rharding8 Mar 29, 2024
9a442de
Fixed S-type instruction immediate
Geetis Mar 29, 2024
96aba78
Added Barebones FPU ASM file. NOT DONE YET!
rharding8 Mar 29, 2024
4da8faa
Updated RISC-V fib. THANKS BROOKS!!!!! <3
Geetis Mar 29, 2024
519bf1e
Merge pull request #371 from SWIM-ucf/riscv-fixes
Geetis Mar 29, 2024
7bc4314
Merge branch 'swim-v2' into riscv-visual-datapath
brooksmckinley Mar 29, 2024
9e531a8
Add new data lines for visual datapath
brooksmckinley Mar 29, 2024
a34aa15
Merge branch 'swim-v2' into riscv-visual-datapath
brooksmckinley Mar 29, 2024
8204869
Fix negative imm values
brooksmckinley Mar 29, 2024
259873f
Fix breakpoints regression
brooksmckinley Mar 29, 2024
2a6a3d7
Evil hack to fix the stack view in RISC-V
brooksmckinley Mar 29, 2024
f5863ac
OOPs silly me I used the wrong register for sp and that broke the sta…
brooksmckinley Mar 29, 2024
3514992
Recursive version of riscv_fib to show off the stack viewer
brooksmckinley Mar 29, 2024
2aab34d
Merge pull request #370 from SWIM-ucf/riscv-visual-datapath
brooksmckinley Mar 29, 2024
904b9b1
Merge branch 'swim-v2' of github.com:SWIM-ucf/SWIM into riscv-string-…
cayb0rg Mar 29, 2024
62bf900
Starts adding tests for each RISCV instruction conversion
cayb0rg Mar 29, 2024
6acbac8
Merge branch 'swim-v2' into riscv-fpu-asm-examples
rharding8 Mar 29, 2024
26ea418
Implemented FPU Tests for Load, Store, and Sqrt.
rharding8 Mar 29, 2024
9c4eb73
Fix offset value and add logic for getting the label from immediate i…
cayb0rg Mar 29, 2024
b64299a
Remove all instructions assembly file
cayb0rg Mar 29, 2024
d2043d8
Fix rs2 in RISC-V visual datapath
brooksmckinley Mar 29, 2024
f3f494c
Add commas to get_string_version for MIPS instructions
cayb0rg Mar 29, 2024
b539956
Fix labels
cayb0rg Mar 29, 2024
e20f75c
Cargo fmt
cayb0rg Mar 29, 2024
987231b
More ASM examples.
rharding8 Mar 29, 2024
8c8418c
Merge pull request #372 from SWIM-ucf/riscv-fpu-asm-examples
rharding8 Mar 29, 2024
2fdd1ed
Fixed a few instructions that were misbehaving.
rharding8 Mar 29, 2024
2910eca
Merge into swim-v2
cayb0rg Apr 1, 2024
abe6bd6
Merge branch 'swim-v2' of github.com:SWIM-ucf/SWIM into riscv-string-…
cayb0rg Apr 1, 2024
6a063ff
Fix tests for MIPS instruction disassembly
cayb0rg Apr 1, 2024
cb20a12
Split parser error messages into lines in the console
brooksmckinley Apr 1, 2024
e361da6
Calculate overlap with respect to wrapper instead of window
cayb0rg Apr 1, 2024
a74f50e
Fixed more Sign Extension stuff and refined
rharding8 Apr 1, 2024
8044d24
Merge pull request #373 from SWIM-ucf/issue/hover-instructions
cayb0rg Apr 2, 2024
09d87c4
Merge branch 'swim-v2' into riscv-fpu-fixes
rharding8 Apr 5, 2024
87bc494
Merge pull request #375 from SWIM-ucf/oneline-parser-fix
brooksmckinley Apr 5, 2024
42a65b4
Fixed comments in instruction file.
rharding8 Apr 5, 2024
99d742f
Removed unused constants.
rharding8 Apr 5, 2024
844c7bc
Updated Control Signals comments.
rharding8 Apr 5, 2024
5e742ac
Merge pull request #376 from SWIM-ucf/riscv-fpu-fixes
rharding8 Apr 5, 2024
ad3f434
Merge pull request #374 from SWIM-ucf/issue/datapath-popup
brooksmckinley Apr 5, 2024
ff1ab8e
Updated comments and removed unused code from
rharding8 Apr 5, 2024
28fb0ba
Updated comments in datapath_signals.
rharding8 Apr 5, 2024
25c9cd3
Fixed all RISC-V Core Comments.
rharding8 Apr 5, 2024
feb344b
Hide current line before execution starts in text segment view
cayb0rg Apr 7, 2024
1ab47c4
Feedback changes
cayb0rg Apr 7, 2024
482cca6
Merge branch 'swim-v2' of github.com:SWIM-ucf/SWIM into riscv-string-…
cayb0rg Apr 7, 2024
4e4357c
Hack RISC-V support into monaco and switch using the dropdown
brooksmckinley Apr 10, 2024
507fb4e
Switch the example when changing architectures
brooksmckinley Apr 10, 2024
631960f
Added some basic RISC-V register tests.
rharding8 Apr 10, 2024
d302b06
Pseudo-instruction support for IO operations
Geetis Apr 10, 2024
375ed3c
Fixed Cargo FMT error.
rharding8 Apr 10, 2024
133329c
Implemented addition tests.
rharding8 Apr 10, 2024
3438289
Added Subtraction tests. Removed legacy initialize
rharding8 Apr 10, 2024
9fd61dc
Fixed formatting.
rharding8 Apr 10, 2024
52243fe
Merge pull request #367 from SWIM-ucf/riscv-string-version
brooksmckinley Apr 10, 2024
6d9ec12
Merge pull request #377 from SWIM-ucf/riscv-language
brooksmckinley Apr 10, 2024
22a8b17
Added a version of the Pythagorean algorithm
rharding8 Apr 11, 2024
080536b
Merge pull request #380 from SWIM-ucf/riscv-fpu-better-pythagorean
brooksmckinley Apr 11, 2024
e3f970b
Merge pull request #378 from SWIM-ucf/io-pseudo
brooksmckinley Apr 11, 2024
e886ede
Fix the agent breaking out of the wrong loop while printing nulls
brooksmckinley Apr 12, 2024
17c6b0b
Merge pull request #381 from SWIM-ucf/print-hotfix
brooksmckinley Apr 12, 2024
34aa5b5
Merge branch 'swim-v2' of github.com:SWIM-ucf/SWIM into text-segment-fix
cayb0rg Apr 12, 2024
479a936
Merge pull request #382 from SWIM-ucf/text-segment-fix
cayb0rg Apr 13, 2024
e6b34d6
Reverse stack frame
cayb0rg Apr 15, 2024
11c472c
Fix FP register editing and display for float/double
cayb0rg Apr 15, 2024
cb78ea2
Fix hex editor ASCII highlighting
cayb0rg Apr 15, 2024
cdcd9c1
Highlight hex when selecting ASCII
cayb0rg Apr 15, 2024
b7b4da5
Add ASCII editing
cayb0rg Apr 16, 2024
9faf617
Reorganize MIPS disassembly and add MIPS instruction disassembly tests
cayb0rg Apr 16, 2024
cd6776d
Fix Stack Frame Call Line link
cayb0rg Apr 16, 2024
f2b5d72
Add GitHub link
cayb0rg Apr 16, 2024
eef7c55
Fix MIPS SLL instruction disassembly and hover description
cayb0rg Apr 16, 2024
1ec9c13
Delete static/assembly_examples/mips_instructioins.asm
cayb0rg Apr 17, 2024
9ef6c06
Finish MIPS disassembly tests for FPU type instructions
cayb0rg Apr 18, 2024
9432045
Add RISCV disassembly tests & fix MIPS nop disassembly
cayb0rg Apr 19, 2024
5c2a1b4
Format
cayb0rg Apr 19, 2024
bcdcc35
Fix hex editor edge case
cayb0rg Apr 19, 2024
51d2903
Added more test cases for RISC-V. ~12 left, all
rharding8 Apr 19, 2024
a70dd12
Fixed register suggestions for RISC-V
Geetis Apr 19, 2024
e824605
Clean up parser documentation
Geetis Apr 19, 2024
4a5db44
Remove redundancy in match cases
Geetis Apr 19, 2024
7f0e871
jr pseudo-instruction fix
Geetis Apr 19, 2024
ddfbd86
Fixed Shift R-types. Added tests for such.
rharding8 Apr 19, 2024
14473a8
Added SLT tests.
rharding8 Apr 19, 2024
f5be9a3
Re-add assemble button after assembling
cayb0rg Apr 19, 2024
74d9b1d
Added addi tests.
rharding8 Apr 19, 2024
ccdd84a
Add 'Report an issue' tooltip to Github link
cayb0rg Apr 19, 2024
cbfee7a
Added memory instruction tests.
rharding8 Apr 19, 2024
ac6cfb5
Added Multiplication and Division Test Cases.
rharding8 Apr 19, 2024
cf7187d
Update README.md to include v2 additions
brooksmckinley Apr 19, 2024
7f39c21
Added LUI tests.
rharding8 Apr 19, 2024
9a3eb2d
Add more comments to UI components and change console styling to use …
cayb0rg Apr 19, 2024
b53cdc8
Fix typo and add names of V2 developers
brooksmckinley Apr 19, 2024
3036147
Merge pull request #385 from SWIM-ucf/readme-additions
brooksmckinley Apr 19, 2024
9913c15
Fix inaccuracy in registers used for floating point syscalls
brooksmckinley Apr 19, 2024
565c454
Merge branch 'swim-v2' into riscv-documentation-cleanup
rharding8 Apr 19, 2024
a04a3c5
Slight phrasing change
brooksmckinley Apr 19, 2024
13b205b
Merge pull request #386 from SWIM-ucf/readme-additions
brooksmckinley Apr 19, 2024
5dde2d5
Update emulation_core.rs
rharding8 Apr 19, 2024
ea108d1
Grey out execute on parser error
cayb0rg Apr 19, 2024
5bff14e
Merge pull request #384 from SWIM-ucf/parser-fixes
brooksmckinley Apr 19, 2024
76861b7
Fixed weird redundancy brought on by merge commit.
rharding8 Apr 20, 2024
ab93485
Removed log statements AGAIN.
rharding8 Apr 20, 2024
d1a7c0f
Remove agent-related console logs
brooksmckinley Apr 20, 2024
ce3ecea
Merge pull request #379 from SWIM-ucf/riscv-documentation-cleanup
rharding8 Apr 20, 2024
588415b
Update deploy.yml
cayb0rg Apr 20, 2024
6179ba3
Merge pull request #383 from SWIM-ucf/ui-bug-fixes
brooksmckinley Apr 20, 2024
4aa76fa
Fix clippy errors and adjust error levels
brooksmckinley Apr 20, 2024
3093698
Merge pull request #387 from SWIM-ucf/remove-console-logs
brooksmckinley Apr 20, 2024
f9710bc
Merge pull request #388 from SWIM-ucf/issue/tailwind-package
brooksmckinley Apr 20, 2024
e93c5f3
Fixed branching and added tests.
rharding8 Apr 20, 2024
237a89e
Added BNE tests.
rharding8 Apr 20, 2024
aa37aaf
Polished.
rharding8 Apr 20, 2024
d7ad42c
Merge branch 'swim-v2' into riscv-tests
rharding8 Apr 20, 2024
788706e
Fixed fmt issue.
rharding8 Apr 20, 2024
6d3da46
Merge pull request #390 from SWIM-ucf/riscv-tests
rharding8 Apr 20, 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
4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
workflow_call:

env:
PROJECT_TRUNK_VERSION: 'v0.16.0'
PROJECT_TRUNK_VERSION: 'v0.18.8'

jobs:
check:
Expand Down Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Build
run: trunk build
if: success() || failure()

- name: Check documentation
run: cargo doc --no-deps
if: success() || failure()
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ jobs:
uses: jetli/[email protected]
with:
version: ${{ env.PROJECT_TRUNK_VERSION }}

- name: Install Tailwind CSS
run: npm install -g tailwindcss

- name: Build
run: trunk build --release --public-url /${{ github.event.repository.name }}
Expand Down
Loading
Loading