0
0
mirror of https://github.com/cucumber-sp/yandex-music-linux.git synced 2024-12-25 06:44:38 +03:00
yandex-music-linux/.github/workflows/build.yml

69 lines
1.6 KiB
YAML
Raw Normal View History

2024-01-31 23:13:22 +03:00
name: Build
on:
2024-02-03 12:15:40 +03:00
workflow_call:
inputs:
ref:
default: ''
required: false
type: string
2024-01-31 23:13:22 +03:00
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
container:
2024-02-03 12:15:40 +03:00
image: archlinux:latest
2024-01-31 23:13:22 +03:00
steps:
- name: Checkout
uses: actions/checkout@v4
2024-02-03 12:15:40 +03:00
with:
ref: ${{ (inputs.ref || '') }}
2024-01-31 23:13:22 +03:00
- name: Build
2024-02-01 18:40:07 +03:00
run: sh ./.github/workflows/build.sh
2024-01-31 23:13:22 +03:00
- name: Upload Arch artifact
uses: actions/upload-artifact@v4
with:
path: ./dist/*.pkg.tar.zst
name: arch-packages
- name: Upload Deb artifact
2024-01-31 23:13:22 +03:00
uses: actions/upload-artifact@v4
with:
path: ./dist/*.deb
name: deb-packages
2024-02-02 19:05:07 +03:00
- name: Upload Asar artifacts
uses: actions/upload-artifact@v4
with:
path: ./dist/*.asar
name: asar-packages
2024-02-01 00:07:07 +03:00
nix-build:
runs-on: ubuntu-latest
2024-02-01 20:28:35 +03:00
env:
NIXPKGS_ALLOW_UNFREE: 1
2024-02-01 00:07:07 +03:00
steps:
- name: Checkout
uses: actions/checkout@v4
2024-02-03 12:15:40 +03:00
with:
ref: ${{ (inputs.ref || '') }}
2024-02-01 00:07:07 +03:00
- name: Install nix
uses: cachix/install-nix-action@v22
2024-02-04 16:08:55 +03:00
- uses: DeterminateSystems/magic-nix-cache-action@v2
- name: Build yandexmusic
run: NIXPKGS_ALLOW_UNFREE=1 nix build --impure .#yandexmusic
- name: Build yandexmusic background
run: NIXPKGS_ALLOW_UNFREE=1 nix build --impure .#yandexmusic-background
- name: Build yandexmusic without flakes binaries
run: NIXPKGS_ALLOW_UNFREE=1 nix build --impure .#yandexmusic-noflakes