mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
e335c7a20d
`set-output` is getting deprecated, so need to move to newer ways. Signed-off-by: Michał Sawicz (Saviq) <michal@sawicz.net>
63 lines
1.7 KiB
YAML
63 lines
1.7 KiB
YAML
name: Linux Snap
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
Snap:
|
|
runs-on: ubuntu-latest
|
|
|
|
timeout-minutes: 60
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v3
|
|
with:
|
|
# Needed for version determination to work
|
|
fetch-depth: 0
|
|
|
|
- name: Set up LXD
|
|
uses: canonical/setup-lxd@main
|
|
|
|
- name: Set up CCache
|
|
id: setup-ccache
|
|
run: |
|
|
sudo apt-get install ccache
|
|
mkdir -p ${HOME}/.ccache
|
|
ccache --max-size=2G
|
|
/snap/bin/lxc profile device add default ccache disk source=${HOME}/.ccache/ path=/root/.ccache
|
|
|
|
# Patch snapcraft.yaml to enable ccache
|
|
patch -p1 < .github/workflows/linux-snap.patch
|
|
|
|
# Find common base between master and HEAD to use as cache key.
|
|
git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules origin master
|
|
echo "key=$( git merge-base origin/master ${{ github.sha }} )" >> $GITHUB_OUTPUT
|
|
|
|
- name: CCache
|
|
uses: actions/cache@v3
|
|
with:
|
|
key: ccache-${{ runner.os }}-${{ steps.setup-ccache.outputs.key }}
|
|
restore-keys: |
|
|
ccache-${{ runner.os }}-
|
|
path: ~/.ccache/**
|
|
|
|
- name: Build and verify the snap
|
|
uses: canonical/actions/build-snap@release
|
|
id: build-snap
|
|
with:
|
|
setup-lxd: false
|
|
|
|
- name: Clear CCache stats
|
|
run: ccache --show-stats --zero-stats
|
|
|
|
- name: Upload the snap
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ${{ steps.build-snap.outputs.snap-name }}
|
|
path: ${{ steps.build-snap.outputs.snap-path }}
|
|
if-no-files-found: error
|