-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
7 changed files
with
39 additions
and
6 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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
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 @@ | ||
# Ignore git | ||
.github | ||
.git | ||
.idea | ||
.images | ||
.logo | ||
.soda_resource_tools_server | ||
.soda_resource_tools_webui | ||
.vscode | ||
soda_cli | ||
soda_cli_config | ||
soda_resource_tools_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,13 @@ | ||
# 使用官方Rust镜像作为基础镜像 | ||
FROM rust:latest | ||
|
||
# 安装OpenSSL | ||
RUN apt-get update && \ | ||
apt-get install -y openssl libssl-dev pkg-config && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
# install soda_clix | ||
RUN cargo install soda_clix | ||
|
||
# test soda_clix | ||
RUN soda_clix --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,5 @@ | ||
cross build --target x86_64-apple-darwin --release | ||
|
||
cross build --target x86_64-pc-windows-gnu --release | ||
|
||
cross build --target x86_64-unknown-linux-gnu --release |
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,7 @@ | ||
#!/bin/bash | ||
|
||
cross build --target x86_64-apple-darwin --release | ||
|
||
cross build --target x86_64-pc-windows-gnu --release | ||
|
||
cross build --target x86_64-unknown-linux-gnu --release |