Skip to content

Commit bdb2754

Browse files
Merge pull request #76 from dreamer-coding/main
2 parents aad8b90 + 4275635 commit bdb2754

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+666
-214
lines changed

.github/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
builddir
22
.DS_Store
33
subprojects/**
4-
.vscode/**
Lines changed: 26 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,32 @@
11
---
2-
name: Bug report
3-
about: Create a report to help us improve
4-
title: ''
5-
labels: ''
6-
assignees: ''
7-
2+
name: 🐞 Bug Report
3+
about: Report a reproducible issue or unexpected behavior
4+
title: "[BUG] "
5+
labels: bug
86
---
97

10-
**Describe the bug**
11-
A clear and concise description of what the bug is.
8+
## Description
9+
<!-- A clear and concise description of the problem. -->
10+
11+
## Steps to Reproduce
12+
1. Go to '...'
13+
2. Click on '...'
14+
3. See error
15+
16+
## Expected Behavior
17+
<!-- What you expected to happen. -->
1218

13-
**To Reproduce**
14-
Steps to reproduce the behavior.
19+
## Actual Behavior
20+
<!-- What actually happened. Include logs or screenshots if possible. -->
1521

16-
**Expected behavior**
17-
A clear and concise description of what you expected to happen.
22+
## Environment
23+
- OS: [e.g. Linux, macOS, Windows]
24+
- Compiler/Interpreter: [e.g. GCC 13, Python 3.12]
25+
- Version/Commit: [e.g. v1.2.3 or commit SHA]
1826

19-
**Desktop (please complete the following information):**
20-
- Host OS : `???`
21-
- SKD Version: `???`
27+
## Additional Context
28+
<<<<<<< HEAD
29+
<!-- Any other info that might help us debug. -->
30+
=======
31+
<!-- Any other info that might help us debug. -->
32+
>>>>>>> 8fa1a3c6925c6eca33bb790e3bd44098e27e32bb
Lines changed: 21 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,25 @@
1-
# Fossil XSDK Pull Request
1+
---
2+
name: ✨ Feature Request
3+
about: Suggest a new feature or improvement
4+
title: "[FEATURE] "
5+
labels: enhancement
6+
---
27

3-
## Description
4-
<!-- Briefly describe the purpose and scope of this pull request. -->
8+
## Summary
9+
<!-- Briefly describe the feature or improvement. -->
510

6-
## Testing
7-
<!-- Describe the testing process or steps taken to ensure the changes work as expected. -->
11+
## Motivation
12+
<!-- Why is this feature important? What problem does it solve? -->
813

9-
## Checklist
10-
- [ ] Code follows the project's coding standards.
11-
- [ ] Tests have been added or updated to cover the changes.
12-
- [ ] Documentation has been updated to reflect the changes.
13-
- [ ] The code has been reviewed by team members.
14-
- [ ] All checks and tests pass.
15-
- [ ] The license header and notices are updated where necessary.
14+
## Proposed Solution
15+
<!-- Describe how you'd like to see it implemented (if you have ideas). -->
1616

17-
## License
18-
This project is licensed under the Mozilla Public License - see the [LICENSE](LICENSE) file for details.
17+
## Alternatives Considered
18+
<!-- If you considered other approaches, mention them here. -->
19+
20+
## Additional Context
21+
<<<<<<< HEAD
22+
<!-- Optional: Extra information, diagrams, or references. -->
23+
=======
24+
<!-- Optional: Extra information, diagrams, or references. -->
25+
>>>>>>> 8fa1a3c6925c6eca33bb790e3bd44098e27e32bb

.github/ISSUE_TEMPLATE/security.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
name: 🔒 Security Issue
3+
about: Report a potential security vulnerability or concern
4+
title: "[SECURITY] "
5+
labels: security
6+
---
7+
8+
⚠️ **IMPORTANT: Do NOT share sensitive details in this public issue.**
9+
This template is for alerting maintainers about a potential security problem **without disclosing exploit details**.
10+
11+
## Summary
12+
<!-- Briefly describe what you found, without providing reproduction steps or exploit code. -->
13+
14+
## Impact
15+
<!-- What might be affected if this is a real issue? (e.g., data leakage, crash, privilege escalation) -->
16+
17+
## Next Steps
18+
Maintainer(s) will review this issue and contact you to discuss details privately.
19+
If you are comfortable, please share how we can reach you:
20+
21+
- **Preferred Contact:** (GitHub handle, email, X/Facebook username, etc.)
22+
23+
---
24+
25+
**Guidelines for Safe Reporting:**
26+
- Do not share exploit code or detailed steps here.
27+
- Do not share user data or private keys.
28+
<<<<<<< HEAD
29+
- Wait for maintainer response before disclosing further details.
30+
=======
31+
- Wait for maintainer response before disclosing further details.
32+
>>>>>>> 8fa1a3c6925c6eca33bb790e3bd44098e27e32bb

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 20 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,26 @@
1-
# Fossil XSDK Pull Request
1+
# 🛠 Pull Request
22

33
## Description
4-
<!-- Briefly describe the purpose and scope of this pull request. -->
4+
<!-- Briefly explain what this pull request does and why it’s needed. -->
55

6-
## Testing
7-
<!-- Describe the testing process or steps taken to ensure the changes work as expected. -->
6+
## Related Issue(s)
7+
<!-- If this PR fixes or is related to an issue, link it here. Example: Closes #42 -->
8+
9+
## Changes Made
10+
- [ ] Code cleanup
11+
- [ ] Bug fix
12+
- [ ] New feature
13+
- [ ] Documentation update
14+
- [ ] Other (explain below)
815

916
## Checklist
10-
- [ ] Code follows the project's coding standards.
11-
- [ ] Tests have been added or updated to cover the changes.
12-
- [ ] Documentation has been updated to reflect the changes.
13-
- [ ] The code has been reviewed by team members.
14-
- [ ] All checks and tests pass.
15-
- [ ] The license header and notices are updated where necessary.
17+
- [ ] Code builds and passes tests
18+
- [ ] No breaking changes introduced
19+
- [ ] Documentation updated if necessary
1620

17-
## License
18-
This project is licensed under the Mozilla Public License - see the [LICENSE](LICENSE) file for details.
21+
## Additional Notes
22+
<<<<<<< HEAD
23+
<!-- Optional: Anything else reviewers should know. -->
24+
=======
25+
<!-- Optional: Anything else reviewers should know. -->
26+
>>>>>>> 8fa1a3c6925c6eca33bb790e3bd44098e27e32bb

.github/ciimage/Dockerfile.archlinux

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ RUN pacman -Syu --noconfirm && \
1616
python-pip \
1717
git \
1818
meson \
19-
ninja && \
19+
ninja \
20+
tzdata && \
2021
pacman -Scc --noconfirm
2122

2223
# Set environment variables
@@ -28,4 +29,4 @@ ENV LD_LIBRARY_PATH=/usr/local/lib
2829
WORKDIR /workspace
2930

3031
# Default command
31-
CMD ["bash"]
32+
CMD ["bash"]

.github/ciimage/Dockerfile.debian

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ ENV CC=clang \
3636
WORKDIR /workspace
3737

3838
# Default command
39-
CMD ["bash"]
39+
CMD ["bash"]

.github/ciimage/Dockerfile.fedora

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ ENV LD_LIBRARY_PATH=/usr/local/lib64
3030
WORKDIR /workspace
3131

3232
# Default command
33-
CMD ["bash"]
33+
CMD ["bash"]

.github/ciimage/Dockerfile.ubuntu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ RUN python3 -m pip install --no-cache-dir meson ninja
2828
# Set environment variables
2929
ENV CC=/usr/bin/gcc
3030
ENV CXX=/usr/bin/g++
31-
ENV LD_LIBRARY_PATH=/usr/local/lib
31+
ENV LD_LIBRARY_PATH=/usr/local/lib

.github/workflows/crossfile_ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
9696
- name: Install Meson
9797
run: |
98-
python -m pip install meson==1.8.0 ninja
98+
python -m pip install meson ninja
9999
100100
- name: Configure the Project
101101
run: |
@@ -104,3 +104,7 @@ jobs:
104104
- name: Build the Project
105105
run: |
106106
meson compile -C builddir
107+
108+
- name: Test the Project
109+
run: |
110+
meson test -C builddir -v --test-args='show --mode tree --verbose ci --result fail'

0 commit comments

Comments
 (0)