-
Notifications
You must be signed in to change notification settings - Fork 516
156 lines (137 loc) · 5.42 KB
/
Copy pathsnap.yml
File metadata and controls
156 lines (137 loc) · 5.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
# This file is part of BOINC.
# https://boinc.berkeley.edu
# Copyright (C) 2025 University of California
#
# BOINC is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License
# as published by the Free Software Foundation,
# either version 3 of the License, or (at your option) any later version.
#
# BOINC is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with BOINC. If not, see <http://www.gnu.org/licenses/>.
name: Snap
on:
push:
branches: [ master ]
tags: [ 'client_release/**' ]
pull_request:
branches: [ master ]
schedule:
- cron: '0 0 * * *'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
AWS_ACCESS_KEY_ID: ${{ secrets.S3_ACCESS_KEY }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.S3_SECRET_KEY }}
AWS_DEFAULT_REGION: us-west-2
jobs:
docker_build:
name: snap-${{ matrix.arch }}-build
runs-on: ${{ matrix.runner }}
strategy:
fail-fast: false
matrix:
include:
- arch: amd64
runner: ubuntu-latest
- arch: arm64
runner: ubuntu-24.04-arm
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y p7zip-full
- name: Running from origin repo
if: ${{ success() && env.AWS_ACCESS_KEY_ID != 0 && env.AWS_SECRET_ACCESS_KEY != 0 }}
run: |
echo "VCPKG_BINARY_SOURCES=clear;x-aws,s3://vcpkg.cache.boinc/,readwrite" >> $GITHUB_ENV
- name: Running from fork
if: ${{ success() && (env.AWS_ACCESS_KEY_ID == 0 || env.AWS_SECRET_ACCESS_KEY == 0) }}
run: |
echo "VCPKG_BINARY_SOURCES=clear;x-aws-config,no-sign-request;x-aws,s3://vcpkg.cache.boinc/,read" >> $GITHUB_ENV
- name: Fix version in the snapcraft.yaml
run: |
PKG_VERSION=$(cat version.h | grep BOINC_VERSION_STRING | sed -e 's|#define BOINC_VERSION_STRING||' | jq -r .)
if [[ "x${PKG_VERSION}" == "x" ]]; then
printf "Could not obtain release package version from version.h"
exit 1
fi
PKG_VERSION_FULL="${PKG_VERSION}-${{ github.run_number }}"
sed -i -E "s/(version: \"$PKG_VERSION\")/version: \"$PKG_VERSION_FULL\"/" ${{ github.workspace }}/snap/snapcraft.yaml
- name: Configure docker qemu
if: success()
uses: docker/setup-qemu-action@c7c53464625b32c7a7e944ae62b3e17d2b600130
- name: Build boinc snap
if: success()
run: |
docker run \
--rm \
--tty \
--privileged \
--volume $PWD:/root \
--workdir /root \
--env VCPKG_BINARY_SOURCES=$VCPKG_BINARY_SOURCES \
--env AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID \
--env AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY \
--env AWS_DEFAULT_REGION=$AWS_DEFAULT_REGION \
diddledani/snapcraft:core22 \
"snap run snapcraft --verbosity verbose pack --destructive-mode --output boinc_${{ matrix.arch }}.snap --build-for=${{ matrix.arch }}"
sudo chown $USER boinc_${{ matrix.arch }}.snap
- name: Install and test snap boinc inside docker
if: success()
run: |
docker run \
--rm \
--tty \
--privileged \
--volume $PWD:/root \
--workdir /root \
--platform linux/${{ matrix.arch }} \
diddledani/snapcraft:core22 \
"snap install --dangerous boinc_${{ matrix.arch }}.snap && boinc --version && boinc.client --version"
- name: Install and test snap boinc on host
if: success()
run: |
sudo snap install --dangerous boinc_${{ matrix.arch }}.snap
boinc --version
boinc.client --version
- name: Prepare logs on failure
if: ${{ failure() }}
run: |
sudo chown -R $USER parts/boinc/build/3rdParty/linux/vcpkg/buildtrees/
python ./deploy/prepare_deployment.py logs
- name: Upload logs on failure
if: ${{ failure() }}
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
with:
name: snap_logs_${{ matrix.arch }}_${{ github.event.pull_request.head.sha }}
path: deploy/logs.7z
- name: Publish nightly snap build to the edge
if: success() && github.ref == 'refs/heads/master' && github.event_name == 'schedule'
uses: canonical/action-publish@214b86e5ca036ead1668c79afb81e550e6c54d40
env:
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAP_LOGIN }}
with:
snap: boinc_${{ matrix.arch }}.snap
release: edge
- name: Publish alpha snap build to the beta
if: success() && startsWith(github.ref, 'refs/tags/')
uses: canonical/action-publish@214b86e5ca036ead1668c79afb81e550e6c54d40
env:
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAP_LOGIN }}
with:
snap: boinc_${{ matrix.arch }}.snap
release: beta
- name: Upload artifacts
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
if: success()
with:
name: linux_snap_${{ matrix.arch }}_${{ github.event.pull_request.head.sha }}
path: boinc_*.snap