mirror of
https://github.com/GuillemCastro/spotify-dl.git
synced 2024-11-09 21:20:24 +01:00
update Cargo.lock
This commit is contained in:
parent
0083a7988f
commit
72e27605c5
7 changed files with 569 additions and 426 deletions
33
.github/workflows/build-linux.yml
vendored
Normal file
33
.github/workflows/build-linux.yml
vendored
Normal file
|
@ -0,0 +1,33 @@
|
|||
name: Build latest - Linux
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '*'
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
jobs:
|
||||
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Setup cmake
|
||||
uses: jwlawson/actions-setup-cmake@v1.13
|
||||
- name: install Rust stable
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
- name: Setup alsa
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y libasound2-dev gcc alsa
|
||||
- name: Build
|
||||
run: |
|
||||
cargo build --verbose --release
|
||||
|
28
.github/workflows/build-macos.yml
vendored
Normal file
28
.github/workflows/build-macos.yml
vendored
Normal file
|
@ -0,0 +1,28 @@
|
|||
name: Build latest - MacOS
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '*'
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
jobs:
|
||||
|
||||
build:
|
||||
runs-on: macos-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Setup cmake
|
||||
uses: jwlawson/actions-setup-cmake@v1.13
|
||||
- name: install Rust stable
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
- name: Build
|
||||
run: |
|
||||
cargo build --verbose --release
|
29
.github/workflows/build-windows.yml
vendored
Normal file
29
.github/workflows/build-windows.yml
vendored
Normal file
|
@ -0,0 +1,29 @@
|
|||
name: Build latest - Windows
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '*'
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
jobs:
|
||||
|
||||
build:
|
||||
runs-on: windows-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Setup cmake
|
||||
uses: jwlawson/actions-setup-cmake@v1.13
|
||||
- name: install Rust stable
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
- name: Build
|
||||
run: |
|
||||
cargo build --verbose --release
|
||||
|
2
.github/workflows/linux.yml
vendored
2
.github/workflows/linux.yml
vendored
|
@ -1,4 +1,4 @@
|
|||
name: Build latest - Linux
|
||||
name: Release - Linux
|
||||
|
||||
on:
|
||||
push:
|
||||
|
|
2
.github/workflows/macos.yml
vendored
2
.github/workflows/macos.yml
vendored
|
@ -1,4 +1,4 @@
|
|||
name: Build latest - MacOS
|
||||
name: Release - MacOS
|
||||
|
||||
on:
|
||||
push:
|
||||
|
|
2
.github/workflows/windows.yml
vendored
2
.github/workflows/windows.yml
vendored
|
@ -1,4 +1,4 @@
|
|||
name: Build latest - Windows
|
||||
name: Release - Windows
|
||||
|
||||
on:
|
||||
push:
|
||||
|
|
899
Cargo.lock
generated
899
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue