diff --git a/.github/workflows/release-orchestration.yml b/.github/workflows/release-orchestration.yml index 0781da6..1d9adea 100644 --- a/.github/workflows/release-orchestration.yml +++ b/.github/workflows/release-orchestration.yml @@ -62,6 +62,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - name: Install Rust MUSL target + run: rustup target add x86_64-unknown-linux-musl aarch64-unknown-linux-musl - name: Build Daemon run: | cd apps/daemon diff --git a/services/backup-engine/build.gradle.kts b/services/backup-engine/build.gradle.kts index afd939c..a855b28 100644 --- a/services/backup-engine/build.gradle.kts +++ b/services/backup-engine/build.gradle.kts @@ -20,6 +20,7 @@ dependencies { implementation("com.fasterxml.jackson.module:jackson-module-kotlin") implementation("org.jetbrains.kotlin:kotlin-reflect") testImplementation("org.springframework.boot:spring-boot-starter-test") + implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3") } tasks.withType {