Skip to content

wip: add nginx-src crate with vendored nginx sources #160

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

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 6 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ jobs:
steps:
- name: checkout source
uses: actions/checkout@v4
with:
submodules: true
- name: set up cargo cache
uses: actions/cache@v4
continue-on-error: false
Expand Down Expand Up @@ -89,6 +91,8 @@ jobs:
steps:
- name: checkout source
uses: actions/checkout@v4
with:
submodules: true
- name: set up cargo cache
uses: actions/cache@v4
continue-on-error: false
Expand Down Expand Up @@ -123,6 +127,8 @@ jobs:
- name: install command line dependencies
run: brew install make gnupg
- uses: actions/checkout@v4
with:
submodules: true
- uses: dtolnay/rust-toolchain@stable
- name: set up cargo cache
uses: actions/cache@v4
Expand Down
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[submodule "nginx-src/nginx"]
path = nginx-src/nginx
url = https://github.com/nginx/nginx.git
branch = stable-1.28
232 changes: 19 additions & 213 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[workspace]
members = [
"nginx-src",
"nginx-sys",
"examples",
]
Expand Down Expand Up @@ -45,4 +46,4 @@ vendored = ["nginx-sys/vendored"]
maintenance = { status = "experimental" }

[dev-dependencies]
target-triple = "0.1.2"
tempfile = { version = "3.20.0", default-features = false }
Loading
Loading