diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/semifold-ci.yaml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.github/workflows/semifold-ci.yaml b/.github/workflows/semifold-ci.yaml index 9a91518..8c5c00d 100644 --- a/.github/workflows/semifold-ci.yaml +++ b/.github/workflows/semifold-ci.yaml @@ -27,8 +27,8 @@ jobs: - platform: "ubuntu-latest" name: "Linux x86_64 (Musl)" target: "x86_64-unknown-linux-musl" - args: "--target x86_64-unknown-linux-musl" install-musl: true + args: "--target x86_64-unknown-linux-musl" pkg-config-allow-cross: true - platform: "ubuntu-24.04-arm" name: "Linux arm64" @@ -61,18 +61,21 @@ jobs: runs-on: ${{ matrix.platform }} steps: - uses: actions/checkout@v6 + - name: Install OpenSSL dev package + run: sudo apt-get update && sudo apt-get install -y libssl-dev - name: Install Dependencies (Linux x86_64) if: runner.os == 'Linux' run: | sudo apt-get update sudo apt-get install -y libwebkit2gtk-4.1-dev build-essential curl wget file libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev libfuse2 - + - name: Install Musl Tools (for musl target) if: matrix.install-musl == true run: | sudo apt-get install -y musl-tools musl-dev - + sudo apt-get install pkg-config + - name: Install pnpm uses: pnpm/action-setup@v4 |