mirror of
https://github.com/borgbase/vorta
synced 2024-12-21 23:33:13 +00:00
Build and packaging fixes (#2126)
This commit is contained in:
parent
f4dbddd6aa
commit
b49c4bb26d
4 changed files with 8 additions and 5 deletions
|
@ -13,7 +13,7 @@ runs:
|
||||||
libxkbcommon-x11-0 dbus-x11 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 \
|
libxkbcommon-x11-0 dbus-x11 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 \
|
||||||
libxcb-randr0 libxcb-render-util0 libxcb-xinerama0 libxcb-xfixes0 libxcb-shape0 \
|
libxcb-randr0 libxcb-render-util0 libxcb-xinerama0 libxcb-xfixes0 libxcb-shape0 \
|
||||||
libegl1 libxcb-cursor0 libfuse-dev libsqlite3-dev libfuse3-dev pkg-config \
|
libegl1 libxcb-cursor0 libfuse-dev libsqlite3-dev libfuse3-dev pkg-config \
|
||||||
python3-pkgconfig libxxhash-dev borgbackup
|
python3-pkgconfig libxxhash-dev borgbackup appstream
|
||||||
|
|
||||||
- name: Install system dependencies (macOS)
|
- name: Install system dependencies (macOS)
|
||||||
if: runner.os == 'macOS'
|
if: runner.os == 'macOS'
|
||||||
|
|
2
.github/workflows/build-macos.yml
vendored
2
.github/workflows/build-macos.yml
vendored
|
@ -48,7 +48,7 @@ jobs:
|
||||||
- name: Package with PyInstaller
|
- name: Package with PyInstaller
|
||||||
run: |
|
run: |
|
||||||
pyinstaller --clean --noconfirm package/vorta.spec
|
pyinstaller --clean --noconfirm package/vorta.spec
|
||||||
cp -R /opt/homebrew/Caskroom/sparkle/*/Sparkle.framework dist/Vorta.app/Contents/Frameworks/
|
cp -R $(brew --prefix)/Caskroom/sparkle/*/Sparkle.framework dist/Vorta.app/Contents/Frameworks/
|
||||||
curl -LJO https://github.com/borgbackup/borg/releases/download/${{ github.event.inputs.borg_version }}/borg-macos1012.tgz
|
curl -LJO https://github.com/borgbackup/borg/releases/download/${{ github.event.inputs.borg_version }}/borg-macos1012.tgz
|
||||||
tar xvf borg-macos1012.tgz -C dist/Vorta.app/Contents/Resources/
|
tar xvf borg-macos1012.tgz -C dist/Vorta.app/Contents/Resources/
|
||||||
cd dist && zip -rq --symlinks Vorta.zip Vorta.app
|
cd dist && zip -rq --symlinks Vorta.zip Vorta.app
|
||||||
|
|
5
.github/workflows/test.yml
vendored
5
.github/workflows/test.yml
vendored
|
@ -69,6 +69,11 @@ jobs:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
install-nox: true
|
install-nox: true
|
||||||
|
|
||||||
|
- name: Validate Flatpak manifest
|
||||||
|
if: runner.os == 'Linux'
|
||||||
|
shell: bash
|
||||||
|
run: appstreamcli validate ./src/vorta/assets/metadata/com.borgbase.Vorta.appdata.xml
|
||||||
|
|
||||||
- name: Setup tmate session
|
- name: Setup tmate session
|
||||||
uses: mxschmitt/action-tmate@v3
|
uses: mxschmitt/action-tmate@v3
|
||||||
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled == 'true' }}
|
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled == 'true' }}
|
||||||
|
|
|
@ -44,9 +44,7 @@
|
||||||
<releases>
|
<releases>
|
||||||
<release version="v0.10.0" date="2024-11-10" urgency="low">
|
<release version="v0.10.0" date="2024-11-10" urgency="low">
|
||||||
<description>
|
<description>
|
||||||
<p>See <a href="https://github.com/borgbase/vorta/releases">Github</a>
|
See Github for detailed release notes: github.com/borgbase/vorta/releases
|
||||||
for detailed release notes.
|
|
||||||
</p>
|
|
||||||
</description>
|
</description>
|
||||||
</release>
|
</release>
|
||||||
</releases>
|
</releases>
|
||||||
|
|
Loading…
Reference in a new issue