Merge pull request #289 from junkurihara/https-gitmodules
https .gitmodules
This commit is contained in:
commit
5d38f8dd3f
2 changed files with 9 additions and 12 deletions
7
.build/Jenkinsfile
vendored
7
.build/Jenkinsfile
vendored
|
|
@ -37,9 +37,6 @@ pipeline {
|
||||||
|
|
||||||
dir('rust-rpxy') {
|
dir('rust-rpxy') {
|
||||||
sh """
|
sh """
|
||||||
# Update submodule URLs to HTTPS (allows cloning without SSH keys)
|
|
||||||
sed -i 's|git@github.com:|https://github.com/|g' .gitmodules
|
|
||||||
|
|
||||||
# Initialize and update submodules
|
# Initialize and update submodules
|
||||||
git submodule update --init
|
git submodule update --init
|
||||||
"""
|
"""
|
||||||
|
|
@ -59,7 +56,7 @@ pipeline {
|
||||||
|
|
||||||
// Build the binary
|
// Build the binary
|
||||||
sh 'cargo build --release'
|
sh 'cargo build --release'
|
||||||
|
|
||||||
// Prepare and stash files
|
// Prepare and stash files
|
||||||
sh """
|
sh """
|
||||||
# Move binary to workspace root for easier access
|
# Move binary to workspace root for easier access
|
||||||
|
|
@ -81,7 +78,7 @@ pipeline {
|
||||||
stash includes: "${BINARY_NAME}.spec", name: "rpm-files"
|
stash includes: "${BINARY_NAME}.spec", name: "rpm-files"
|
||||||
stash includes: "rpxy.service, config.toml", name: "service-file"
|
stash includes: "rpxy.service, config.toml", name: "service-file"
|
||||||
stash includes: "LICENSE, README.md", name: "docs"
|
stash includes: "LICENSE, README.md", name: "docs"
|
||||||
|
|
||||||
// Archive the binary as an artifact
|
// Archive the binary as an artifact
|
||||||
archiveArtifacts artifacts: "${BINARY_NAME}", allowEmptyArchive: false, fingerprint: true
|
archiveArtifacts artifacts: "${BINARY_NAME}", allowEmptyArchive: false, fingerprint: true
|
||||||
}
|
}
|
||||||
|
|
|
||||||
14
.gitmodules
vendored
14
.gitmodules
vendored
|
|
@ -1,10 +1,10 @@
|
||||||
[submodule "submodules/rusty-http-cache-semantics"]
|
[submodule "submodules/rusty-http-cache-semantics"]
|
||||||
path = submodules/rusty-http-cache-semantics
|
path = submodules/rusty-http-cache-semantics
|
||||||
url = git@github.com:junkurihara/rusty-http-cache-semantics.git
|
url = https://github.com/junkurihara/rusty-http-cache-semantics.git
|
||||||
[submodule "submodules/rustls-acme"]
|
[submodule "submodules/rustls-acme"]
|
||||||
path = submodules/rustls-acme
|
path = submodules/rustls-acme
|
||||||
url = git@github.com:junkurihara/rustls-acme.git
|
url = https://github.com/junkurihara/rustls-acme.git
|
||||||
[submodule "submodules/s2n-quic"]
|
[submodule "submodules/s2n-quic"]
|
||||||
path = submodules/s2n-quic
|
path = submodules/s2n-quic
|
||||||
url = git@github.com:junkurihara/s2n-quic.git
|
url = https://github.com/junkurihara/s2n-quic.git
|
||||||
branch = rustls-pq
|
branch = rustls-pq
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue