see cfg location
Some checks failed
CI/CD Pipeline / deploy-main (push) Failing after 4m25s

This commit is contained in:
philipp 2024-02-18 16:02:01 +01:00
parent 2471f17154
commit 1ea9d6afee
2 changed files with 24 additions and 7 deletions

View File

@ -16,7 +16,23 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Deploy to production
- name: Set up cargo cache
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-release-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-release-
- name: Run
run: |
cargo r --release
- name: Deploy
run: |
mkdir -p ~/.ssh
ssh-keyscan -H $SSH_HOST >> ~/.ssh/known_hosts

13
Cargo.lock generated
View File

@ -26,9 +26,9 @@ dependencies = [
[[package]]
name = "anstream"
version = "0.6.11"
version = "0.6.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e2e1ebcb11de5c03c67de28a7df593d32191b44939c482e97702baaaa6ab6a5"
checksum = "96b09b5178381e0874812a9b157f7fe84982617e48f71f4e3235482775e5b540"
dependencies = [
"anstyle",
"anstyle-parse",
@ -518,22 +518,23 @@ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
[[package]]
name = "ring"
version = "0.17.7"
version = "0.17.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74"
checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
dependencies = [
"cc",
"cfg-if",
"getrandom",
"libc",
"spin",
"untrusted",
"windows-sys 0.48.0",
"windows-sys 0.52.0",
]
[[package]]
name = "risp"
version = "0.1.0"
source = "git+https://git.hofer.link/philipp/risp.git#2d8314f839c28875db0ef40d996613f787bfe0b4"
source = "git+https://git.hofer.link/philipp/risp.git#fdd3b3cb647eba3ad66e8e001851f646f2b2f632"
dependencies = [
"clap",
"directories",