-
Notifications
You must be signed in to change notification settings - Fork 55
119 lines (116 loc) · 3.64 KB
/
canary.yml
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
name: Run canary builds
on:
push:
branches: [master]
pull_request:
branches: [master]
schedule:
- cron: "29 1 * * 1"
workflow_dispatch:
jobs:
# Source builds are performed on the latest beta of each supported distro to
# make sure we catch any code issues as soon as possible.
validate-source-build:
strategy:
matrix:
config:
- image: ubuntu:devel
deps-script: install-apt-deps.sh
codename: $VERSION_CODENAME
pretty-name: $NAME $VERSION
codenames: $UBUNTU_CODENAMES
- image: debian:sid
deps-script: install-apt-deps.sh
codename: $VERSION_CODENAME
pretty-name: $PRETTY_NAME
codenames: $DEBIAN_CODENAMES
- image: fedora:rawhide
deps-script: install-rpm-deps.sh
codename: $VERSION_ID
pretty-name: Fedora $VERSION_ID
codenames: $FEDORA_CODENAMES
runs-on: ubuntu-latest
container:
image: ${{ matrix.config.image }}
steps:
- name: Clone repo
uses: actions/checkout@v4
- name: Install deps
run: ./${{ matrix.config.deps-script }}
- name: Test build
run: ./autogen.sh && make && make install
- name: Run tests
run: python3 ./dropbox_test.py
- name: Check that latest OS version is supported
run: |
. ./distro-info.sh
. /etc/os-release
./check-distro-info-support.sh \
"${{ matrix.config.codename }}" \
"${{ matrix.config.pretty-name }}" \
"${{ matrix.config.codenames }}"
build-packages:
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/checkout@v4
- name: Build packages
run: ./build_packages.sh
- name: Upload Ubuntu packages
uses: actions/upload-artifact@v4
with:
name: ubuntu_packages
path: build/ubuntu/pool/main
- name: Upload Debian packages
uses: actions/upload-artifact@v4
with:
name: debian_packages
path: build/debian/pool/main
- name: Upload Fedora packages
uses: actions/upload-artifact@v4
with:
name: fedora_packages
path: build/fedora/pool
test_debs:
needs: build-packages
strategy:
matrix:
platform:
# Test on all Debian and Ubuntu LTS releases that have GTK 4+, plus
# prerelease to make sure there are no package dependency issues.
- distro: debian
version: bookworm
- distro: debian
version: sid
- distro: ubuntu
version: "24.04"
- distro: ubuntu
version: devel
runs-on: ubuntu-latest
container:
image: "${{ matrix.platform.distro }}:${{ matrix.platform.version }}"
env:
DEBIAN_FRONTEND: noninteractive
steps:
- name: Download packages
uses: actions/download-artifact@v4
with:
name: "${{ matrix.platform.distro }}_packages"
- name: Install packages
run: apt update && apt upgrade -y && apt install -y --fix-missing ./dropbox_*.*.*_amd64.deb
test_rpm:
needs: build-packages
strategy:
matrix:
# Fedora doesn't have LTS releases, so just run on latest and rawhide.
version: [latest, rawhide]
runs-on: ubuntu-latest
container:
image: "fedora:${{ matrix.version }}"
steps:
- name: Download packages
uses: actions/download-artifact@v4
with:
name: "fedora_packages"
- name: Install packages
run: dnf upgrade -y && dnf install -y ./nautilus-dropbox-*.*.*-*.*.x86_64.rpm