-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
274edb9
commit 40cf120
Showing
48 changed files
with
3,466 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
builddir | ||
.DS_Store | ||
subprojects/** | ||
.vscode/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior. | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Desktop (please complete the following information):** | ||
- Host OS : `???` | ||
- SKD Version: `???` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Fossil XSDK Pull Request | ||
|
||
## Description | ||
<!-- Briefly describe the purpose and scope of this pull request. --> | ||
|
||
## Testing | ||
<!-- Describe the testing process or steps taken to ensure the changes work as expected. --> | ||
|
||
## Checklist | ||
|
||
- [ ] Code follows the project's coding standards. | ||
- [ ] Tests have been added or updated to cover the changes. | ||
- [ ] Documentation has been updated to reflect the changes. | ||
- [ ] The code has been reviewed by team members. | ||
- [ ] All checks and tests pass. | ||
- [ ] The license header and notices are updated where necessary. | ||
|
||
## License | ||
|
||
This project is licensed under the Mozilla Public License - see the [LICENSE](LICENSE) file for details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Fossil XSDK Pull Request | ||
|
||
## Description | ||
<!-- Briefly describe the purpose and scope of this pull request. --> | ||
|
||
## Testing | ||
<!-- Describe the testing process or steps taken to ensure the changes work as expected. --> | ||
|
||
## Checklist | ||
- [ ] Code follows the project's coding standards. | ||
- [ ] Tests have been added or updated to cover the changes. | ||
- [ ] Documentation has been updated to reflect the changes. | ||
- [ ] The code has been reviewed by team members. | ||
- [ ] All checks and tests pass. | ||
- [ ] The license header and notices are updated where necessary. | ||
|
||
## License | ||
This project is licensed under the Mozilla Public License - see the [LICENSE](LICENSE) file for details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Use a specific Arch Linux base image | ||
FROM archlinux:latest | ||
|
||
# Set environment variables to avoid interaction | ||
ENV TZ=UTC | ||
|
||
# Update and install system dependencies | ||
RUN pacman -Syu --noconfirm && \ | ||
pacman -S --noconfirm \ | ||
gcc \ | ||
clang \ | ||
gdb \ | ||
llvm \ | ||
rust \ | ||
cargo \ | ||
wget \ | ||
python \ | ||
python-pip \ | ||
git \ | ||
meson \ | ||
ninja && \ | ||
pacman -Scc --noconfirm | ||
|
||
# Set environment variables | ||
ENV CC=/usr/bin/clang | ||
ENV CXX=/usr/bin/clang++ | ||
ENV LD_LIBRARY_PATH=/usr/local/lib | ||
|
||
# Set working directory | ||
WORKDIR /workspace | ||
|
||
# Default command | ||
CMD ["bash"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Use a specific Debian base image | ||
FROM debian:buster | ||
|
||
# Set environment variables to avoid interaction | ||
ENV DEBIAN_FRONTEND=noninteractive \ | ||
TZ=UTC | ||
|
||
# Install system dependencies and clean up | ||
RUN apt-get update && \ | ||
apt-get install -y \ | ||
build-essential \ | ||
clang \ | ||
gcc \ | ||
g++ \ | ||
gdb \ | ||
llvm \ | ||
gobjc \ | ||
gobjc++ \ | ||
libobjc-8-dev \ | ||
libstdc++-8-dev \ | ||
rustc \ | ||
cargo \ | ||
wget \ | ||
python3 \ | ||
python3-pip \ | ||
git && \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
# Install Meson, Ninja, and Cython using pip | ||
RUN python3 -m pip install --no-cache-dir meson ninja | ||
|
||
# Set environment variables | ||
ENV CC=/usr/bin/clang | ||
ENV CXX=/usr/bin/clang++ | ||
ENV LD_LIBRARY_PATH=/usr/local/lib | ||
|
||
# Set working directory | ||
WORKDIR /workspace | ||
|
||
# Default command | ||
CMD ["bash"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Use a specific Fedora base image | ||
FROM fedora:34 | ||
|
||
# Set environment variables to avoid interaction | ||
ENV TZ=UTC | ||
|
||
# Install system dependencies and clean up | ||
RUN dnf -y update && \ | ||
dnf install -y \ | ||
gcc \ | ||
gcc-c++ \ | ||
clang \ | ||
gdb \ | ||
llvm \ | ||
rust \ | ||
cargo \ | ||
wget \ | ||
python3 \ | ||
python3-pip \ | ||
git && \ | ||
dnf clean all | ||
|
||
# Install Meson and Ninja using pip | ||
RUN python3 -m pip install --no-cache-dir meson ninja | ||
|
||
# Set environment variables | ||
ENV CC=/usr/bin/clang | ||
ENV CXX=/usr/bin/clang++ | ||
ENV LD_LIBRARY_PATH=/usr/local/lib64 | ||
|
||
# Set working directory | ||
WORKDIR /workspace | ||
|
||
# Default command | ||
CMD ["bash"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Use a specific Ubuntu base image | ||
FROM ubuntu:20.04 | ||
|
||
# Set environment variables to avoid interaction | ||
ENV DEBIAN_FRONTEND=noninteractive \ | ||
TZ=UTC | ||
|
||
# Install system dependencies and clean up | ||
RUN apt-get update && \ | ||
apt-get install -y \ | ||
build-essential \ | ||
clang \ | ||
gcc \ | ||
g++ \ | ||
gdb \ | ||
llvm \ | ||
gobjc \ | ||
gobjc++ \ | ||
libobjc-10-dev \ | ||
libstdc++-10-dev \ | ||
rustc \ | ||
cargo \ | ||
dub \ | ||
wget \ | ||
python3 \ | ||
python3-pip \ | ||
git && \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
# Install Meson, Ninja, and Cython using pip | ||
RUN python3 -m pip install --no-cache-dir meson ninja | ||
|
||
# Set environment variables | ||
ENV CC=/usr/bin/gcc | ||
ENV CXX=/usr/bin/g++ | ||
ENV LD_LIBRARY_PATH=/usr/local/lib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[binaries] | ||
c = 'arm-linux-gnueabi-gcc' | ||
cpp = 'arm-linux-gnueabi-g++' | ||
ar = 'arm-linux-gnueabi-ar' | ||
strip = 'arm-linux-gnueabi-strip' | ||
|
||
[host_machine] | ||
system = 'linux' | ||
cpu_family = 'arm' | ||
cpu = 'armv7' | ||
endian = 'little' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[binaries] | ||
c = 'aarch64-linux-gnu-gcc' | ||
cpp = 'aarch64-linux-gnu-g++' | ||
ar = 'aarch64-linux-gnu-ar' | ||
strip = 'aarch64-linux-gnu-strip' | ||
|
||
[host_machine] | ||
system = 'linux' | ||
cpu_family = 'aarch64' | ||
cpu = 'aarch64' | ||
endian = 'little' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[binaries] | ||
c = 'mips-linux-gnu-gcc' | ||
cpp = 'mips-linux-gnu-g++' | ||
ar = 'mips-linux-gnu-ar' | ||
strip = 'mips-linux-gnu-strip' | ||
|
||
[host_machine] | ||
system = 'linux' | ||
cpu_family = 'mips' | ||
cpu = 'mips' | ||
endian = 'big' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[binaries] | ||
c = 'mipsel-linux-gnu-gcc' | ||
cpp = 'mipsel-linux-gnu-g++' | ||
ar = 'mipsel-linux-gnu-ar' | ||
strip = 'mipsel-linux-gnu-strip' | ||
|
||
[host_machine] | ||
system = 'linux' | ||
cpu_family = 'mips' | ||
cpu = 'mipsel' | ||
endian = 'little' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[binaries] | ||
c = 'powerpc-linux-gnu-gcc' | ||
cpp = 'powerpc-linux-gnu-g++' | ||
ar = 'powerpc-linux-gnu-ar' | ||
strip = 'powerpc-linux-gnu-strip' | ||
|
||
[host_machine] | ||
system = 'linux' | ||
cpu_family = 'ppc' | ||
cpu = 'powerpc' | ||
endian = 'big' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[binaries] | ||
c = 'powerpc64le-linux-gnu-gcc' | ||
cpp = 'powerpc64le-linux-gnu-g++' | ||
ar = 'powerpc64le-linux-gnu-ar' | ||
strip = 'powerpc64le-linux-gnu-strip' | ||
|
||
[host_machine] | ||
system = 'linux' | ||
cpu_family = 'ppc64' | ||
cpu = 'ppc64le' | ||
endian = 'little' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[binaries] | ||
c = 'riscv64-linux-gnu-gcc' | ||
cpp = 'riscv64-linux-gnu-g++' | ||
ar = 'riscv64-linux-gnu-ar' | ||
strip = 'riscv64-linux-gnu-strip' | ||
|
||
[host_machine] | ||
system = 'linux' | ||
cpu_family = 'riscv' | ||
cpu = 'riscv64' | ||
endian = 'little' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[binaries] | ||
c = 's390x-linux-gnu-gcc' | ||
cpp = 's390x-linux-gnu-g++' | ||
ar = 's390x-linux-gnu-ar' | ||
strip = 's390x-linux-gnu-strip' | ||
|
||
[host_machine] | ||
system = 'linux' | ||
cpu_family = 's390x' | ||
cpu = 's390x' | ||
endian = 'big' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[binaries] | ||
c = 'sparc64-linux-gnu-gcc' | ||
cpp = 'sparc64-linux-gnu-g++' | ||
ar = 'sparc64-linux-gnu-ar' | ||
strip = 'sparc64-linux-gnu-strip' | ||
|
||
[host_machine] | ||
system = 'linux' | ||
cpu_family = 'sparc64' | ||
cpu = 'sparc64' | ||
endian = 'big' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Dependabot configuration file for GitHub Actions dependencies | ||
version: 2 | ||
|
||
updates: | ||
# Maintain dependencies for GitHub Actions | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
# Update dependencies weekly | ||
interval: "weekly" | ||
# Set update time to early morning | ||
time: "05:55" |
Oops, something went wrong.