Skip to content

Commit

Permalink
std: add html package
Browse files Browse the repository at this point in the history
  • Loading branch information
mertcandav committed Jan 17, 2025
1 parent 1b8092a commit 28497ee
Show file tree
Hide file tree
Showing 12 changed files with 2,677 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/std_tests_clang_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ jobs:
julec test --compiler clang -o test std/hash/fnv
./test
- name: Test - std/html
run: |
julec test --compiler clang -o test std/html
./test
- name: Test - std/maps
run: |
julec test --compiler clang -o test std/maps
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/std_tests_clang_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ jobs:
.\bin\julec test --compiler clang -o test std/hash/fnv
./test
- name: Test - std/html
run: |
.\bin\julec test --compiler clang -o test std/html
./test
- name: Test - std/maps
run: |
.\bin\julec test --compiler clang -o test std/maps
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/std_tests_gcc_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@ jobs:
g++-13 -w --std=c++17 -O0 -Wl,-ld_classic -o test dist/ir.cpp
./test
- name: Test - std/html
run: |
julec test --compiler gcc --compiler-path g++-13 -o test -t std/html
g++-13 -w --std=c++17 -O0 -Wl,-ld_classic -o test dist/ir.cpp
./test
- name: Test - std/maps
run: |
julec test --compiler gcc --compiler-path g++-13 -o test -t std/maps
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/std_tests_gcc_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ jobs:
julec test --compiler gcc -o test std/hash/fnv
./test
- name: Test - std/html
run: |
julec test --compiler gcc -o test std/html
./test
- name: Test - std/maps
run: |
julec test --compiler gcc -o test std/maps
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/std_tests_gcc_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ jobs:
.\bin\julec test --compiler gcc -o test std/hash/fnv
./test
- name: Test - std/html
run: |
.\bin\julec test --compiler gcc -o test std/html
./test
- name: Test - std/maps
run: |
.\bin\julec test --compiler gcc -o test std/maps
Expand Down
Loading

0 comments on commit 28497ee

Please sign in to comment.