From 48d0e66f59474c2e6bcf27c3b0167df4e373ae25 Mon Sep 17 00:00:00 2001 From: "Kszinhu@POP_os" Date: Tue, 20 Feb 2024 02:06:24 -0300 Subject: [PATCH] ci/cd: instead of build docker image, build directly workspace --- .github/workflows/check-build.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/check-build.yml b/.github/workflows/check-build.yml index 5de1a31..179d996 100644 --- a/.github/workflows/check-build.yml +++ b/.github/workflows/check-build.yml @@ -19,10 +19,6 @@ jobs: - name: 📥 Checkout uses: actions/checkout@v4 - - uses: jirutka/setup-alpine@v1 - with: - branch: v3.19 - - name: ⚡️ Rust Cache uses: Swatinem/rust-cache@v2 @@ -30,11 +26,9 @@ jobs: uses: mozilla-actions/sccache-action@v0.0.4 - name: 📦 Install Dependencies - shell: alpine.sh {0} run: | - apk add --no-cache \ - build-base cmake musl-dev pkgconfig openssl-dev \ - libpq-dev curl git + sudo apt-get update + sudo apt-get install -y build-essential gcc cmake musl-dev pkg-config libpq-dev openssl libssl-dev - name: 🛠️ Set up Rust uses: actions-rs/toolchain@v1 @@ -43,7 +37,6 @@ jobs: override: true - name: 🚀 Build - shell: alpine.sh {0} env: SCCACHE_GHA_ENABLED: "true" RUSTC_WRAPPER: "sccache"