From 8c4f744bb1b360d0aa9aa3d384583ce7145546cf Mon Sep 17 00:00:00 2001 From: Arijit Basu Date: Fri, 13 Jan 2023 12:03:04 +0530 Subject: [PATCH] Try fix gh action --- .github/workflows/cd.yml | 13 ++++++------- .github/workflows/ci.yml | 8 ++++---- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 1864f26..ca26841 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -3,7 +3,7 @@ name: Continuous Deployment on: push: tags: - - 'v*.*.*' + - "v*.*.*" workflow_dispatch: jobs: @@ -18,23 +18,22 @@ jobs: - ubuntu-20.04 rust: [stable] include: - # See the list: https://github.com/cross-rs/cross - os: macos-latest artifact_prefix: macos target: x86_64-apple-darwin - binary_postfix: '' + binary_postfix: "" - os: ubuntu-latest artifact_prefix: linux target: x86_64-unknown-linux-gnu - binary_postfix: '' + binary_postfix: "" - os: ubuntu-20.04 artifact_prefix: linux-musl target: x86_64-unknown-linux-musl - binary_postfix: '' + binary_postfix: "" # Will see later @@ -65,7 +64,7 @@ jobs: - name: Installing needed Ubuntu dependencies if: matrix.os == 'ubuntu-latest' || matrix.os == 'ubuntu-20.04' run: | - sudo apt-get update + sudo apt-get update --fix-missing sudo apt-get install -y -qq pkg-config libssl-dev libxcb1-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev - name: Checking out sources @@ -142,7 +141,7 @@ jobs: override: true - run: | - sudo apt-get update + sudo apt-get update --fix-missing sudo apt-get install -y -qq pkg-config libssl-dev libxcb1-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev - uses: actions-rs/cargo@v1 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ae118dc..5f06b2f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,15 +35,15 @@ jobs: - os: macos-latest artifact_prefix: macos target: x86_64-apple-darwin - binary_postfix: '' + binary_postfix: "" - os: ubuntu-latest artifact_prefix: linux target: x86_64-unknown-linux-gnu - binary_postfix: '' + binary_postfix: "" - os: ubuntu-20.04 artifact_prefix: linux-musl target: x86_64-unknown-linux-musl - binary_postfix: '' + binary_postfix: "" env: RUST_BACKTRACE: full @@ -64,7 +64,7 @@ jobs: - name: Installing needed Ubuntu dependencies if: matrix.os == 'ubuntu-latest' || matrix.os == 'ubuntu-20.04' run: | - sudo apt-get update + sudo apt-get update --fix-missing sudo apt-get install -y -qq pkg-config libssl-dev libxcb1-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev - name: Build