Skip to content

songi: fixed last played when song has never been played #189

songi: fixed last played when song has never been played

songi: fixed last played when song has never been played #189

Workflow file for this run

name: mpdev C/C++ CI
on:
push:
paths:
- '**'
- .github/workflows/mpdev-c-cpp.yml
- '!**/debian/*'
- '!**/mpdev.spec.in'
- '!**/obs/*'
- '!**/doc/*'
- '!**.md'
- '!**/mpdev-obs.yml'
workflow_dispatch:
jobs:
build:
name: ${{ matrix.host }}-${{ matrix.config.name }}
runs-on: ${{ matrix.host }}
strategy:
fail-fast: false
matrix:
host: [ubuntu-latest, macos-latest]
steps:
- name: extra_packages
run: if [ "${OS}" = "macos-latest" ]; then brew install automake autoconf libtool pkgconfig sqlite3 openssl; fi
env:
OS: ${{ matrix.host }}
- name: checkout_main
uses: actions/checkout@v2
with:
path: main
- name: checkout_qmail
uses: actions/checkout@v2
with:
repository: mbhangui/libqmail
path: libqmail
- name: install_qmail
run: cd libqmail;env CPPFLAGS="-I/usr/local/opt/[email protected]/include" LDFLAGS="-L/usr/local/opt/[email protected]/lib" ./default.configure; env CPPFLAGS="-I/usr/local/opt/[email protected]/include" LDFLAGS="-L/usr/local/opt/[email protected]/lib" make; sudo make install-strip
- name: build_mpdev
run: |
cd main; ./default.configure; make
make clean; /bin/rm -rf .git ../libqmail autom4te.cache
make -C debian;make mpdev.spec