Try fix gh action

extend-selection v0.20.2
Arijit Basu 1 year ago committed by Arijit Basu
parent d80b1b4db8
commit 8c4f744bb1

@ -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

@ -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

Loading…
Cancel
Save