From 71926ad4b9d8036783671d6c14cde26d47419bae Mon Sep 17 00:00:00 2001 From: philipp Date: Mon, 1 Jan 2024 17:25:35 +0100 Subject: [PATCH 1/6] fix ci --- .gitea/workflows/action.yml | 4 ++-- Cargo.lock | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/action.yml b/.gitea/workflows/action.yml index b5719b2..0de1d84 100644 --- a/.gitea/workflows/action.yml +++ b/.gitea/workflows/action.yml @@ -41,7 +41,7 @@ jobs: - name: Setup Environment run: | rustup target add $CARGO_TARGET - apt-get update -qq && apt-get install -y -qq sshpass musl musl-tools sqlite3 curl gnupg + apt-get update -qq && apt-get install -y -qq sshpass musl musl-tools sqlite3 curl gnupg libssl-dev # Handling NodeSource GPG key curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key -o nodesource.gpg.key @@ -101,7 +101,7 @@ jobs: - name: Setup Environment run: | rustup target add $CARGO_TARGET - apt-get update -qq && apt-get install -y -qq sshpass musl musl-tools sqlite3 curl gnupg && mkdir -p /etc/apt/keyrings | curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_16.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list && apt-get update && apt-get install nodejs -y && apt-get install npm -y + apt-get update -qq && apt-get install -y -qq sshpass musl musl-tools sqlite3 curl gnupg libssl-dev && mkdir -p /etc/apt/keyrings | curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_16.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list && apt-get update && apt-get install nodejs -y && apt-get install npm -y - name: Checkout uses: actions/checkout@v3 diff --git a/Cargo.lock b/Cargo.lock index 7a6a526..e7cb55f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1595,7 +1595,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.42", + "syn 2.0.44", ] [[package]] From f4896f4d800f3b3df97d2cdc9b1a5fa7683110de Mon Sep 17 00:00:00 2001 From: philipp Date: Mon, 1 Jan 2024 17:51:23 +0100 Subject: [PATCH 2/6] push --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index c911cf6..3c8d50b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,3 +24,5 @@ ics = "0.5" futures = "0.3" lettre = "0.11" +[target.'cfg(not(windows))'.dependencies] +openssl = { version = "0.10", features = [ "vendored" ] } From 4797d242a1c2513b5455aa5c14de37a501945831 Mon Sep 17 00:00:00 2001 From: philipp Date: Mon, 1 Jan 2024 17:53:00 +0100 Subject: [PATCH 3/6] push --- .gitea/workflows/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/action.yml b/.gitea/workflows/action.yml index 0de1d84..4b7a8f7 100644 --- a/.gitea/workflows/action.yml +++ b/.gitea/workflows/action.yml @@ -41,7 +41,7 @@ jobs: - name: Setup Environment run: | rustup target add $CARGO_TARGET - apt-get update -qq && apt-get install -y -qq sshpass musl musl-tools sqlite3 curl gnupg libssl-dev + apt-get update -qq && apt-get install -y -qq pkg-config sshpass musl musl-tools sqlite3 curl gnupg libssl-dev # Handling NodeSource GPG key curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key -o nodesource.gpg.key @@ -101,7 +101,7 @@ jobs: - name: Setup Environment run: | rustup target add $CARGO_TARGET - apt-get update -qq && apt-get install -y -qq sshpass musl musl-tools sqlite3 curl gnupg libssl-dev && mkdir -p /etc/apt/keyrings | curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_16.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list && apt-get update && apt-get install nodejs -y && apt-get install npm -y + apt-get update -qq && apt-get install -y -qq pkg-config sshpass musl musl-tools sqlite3 curl gnupg libssl-dev && mkdir -p /etc/apt/keyrings | curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_16.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list && apt-get update && apt-get install nodejs -y && apt-get install npm -y - name: Checkout uses: actions/checkout@v3 From 827613ca7c7d6e39a551145c272045171e6c1a98 Mon Sep 17 00:00:00 2001 From: philipp Date: Mon, 1 Jan 2024 17:25:35 +0100 Subject: [PATCH 4/6] fix ci --- .gitea/workflows/action.yml | 4 ++-- Cargo.lock | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/action.yml b/.gitea/workflows/action.yml index b5719b2..0de1d84 100644 --- a/.gitea/workflows/action.yml +++ b/.gitea/workflows/action.yml @@ -41,7 +41,7 @@ jobs: - name: Setup Environment run: | rustup target add $CARGO_TARGET - apt-get update -qq && apt-get install -y -qq sshpass musl musl-tools sqlite3 curl gnupg + apt-get update -qq && apt-get install -y -qq sshpass musl musl-tools sqlite3 curl gnupg libssl-dev # Handling NodeSource GPG key curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key -o nodesource.gpg.key @@ -101,7 +101,7 @@ jobs: - name: Setup Environment run: | rustup target add $CARGO_TARGET - apt-get update -qq && apt-get install -y -qq sshpass musl musl-tools sqlite3 curl gnupg && mkdir -p /etc/apt/keyrings | curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_16.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list && apt-get update && apt-get install nodejs -y && apt-get install npm -y + apt-get update -qq && apt-get install -y -qq sshpass musl musl-tools sqlite3 curl gnupg libssl-dev && mkdir -p /etc/apt/keyrings | curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_16.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list && apt-get update && apt-get install nodejs -y && apt-get install npm -y - name: Checkout uses: actions/checkout@v3 diff --git a/Cargo.lock b/Cargo.lock index 7a6a526..e7cb55f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1595,7 +1595,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.42", + "syn 2.0.44", ] [[package]] From 54e02b7ea1a97735908e4f8f5bb20286b196dd50 Mon Sep 17 00:00:00 2001 From: philipp Date: Mon, 1 Jan 2024 17:51:23 +0100 Subject: [PATCH 5/6] push --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index c911cf6..3c8d50b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,3 +24,5 @@ ics = "0.5" futures = "0.3" lettre = "0.11" +[target.'cfg(not(windows))'.dependencies] +openssl = { version = "0.10", features = [ "vendored" ] } From 781fb8e9525d401bcf6ae22a73d78c03de9d56e3 Mon Sep 17 00:00:00 2001 From: philipp Date: Mon, 1 Jan 2024 17:53:00 +0100 Subject: [PATCH 6/6] push --- .gitea/workflows/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/action.yml b/.gitea/workflows/action.yml index 0de1d84..4b7a8f7 100644 --- a/.gitea/workflows/action.yml +++ b/.gitea/workflows/action.yml @@ -41,7 +41,7 @@ jobs: - name: Setup Environment run: | rustup target add $CARGO_TARGET - apt-get update -qq && apt-get install -y -qq sshpass musl musl-tools sqlite3 curl gnupg libssl-dev + apt-get update -qq && apt-get install -y -qq pkg-config sshpass musl musl-tools sqlite3 curl gnupg libssl-dev # Handling NodeSource GPG key curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key -o nodesource.gpg.key @@ -101,7 +101,7 @@ jobs: - name: Setup Environment run: | rustup target add $CARGO_TARGET - apt-get update -qq && apt-get install -y -qq sshpass musl musl-tools sqlite3 curl gnupg libssl-dev && mkdir -p /etc/apt/keyrings | curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_16.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list && apt-get update && apt-get install nodejs -y && apt-get install npm -y + apt-get update -qq && apt-get install -y -qq pkg-config sshpass musl musl-tools sqlite3 curl gnupg libssl-dev && mkdir -p /etc/apt/keyrings | curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_16.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list && apt-get update && apt-get install nodejs -y && apt-get install npm -y - name: Checkout uses: actions/checkout@v3