-
-
Notifications
You must be signed in to change notification settings - Fork 0
67 lines (63 loc) · 1.87 KB
/
Copy pathcompatibility.yml
File metadata and controls
67 lines (63 loc) · 1.87 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
---
name: Distribution compatibility
on: # yamllint disable-line rule:truthy
pull_request:
paths:
- ".github/workflows/compatibility.yml"
- "Makefile"
- "VERSION"
- "bin/**"
- "install.sh"
- "libexec/**"
- "packaging/**"
- "share/**"
- "systemd/**"
- "tests/**"
- "uninstall.sh"
push:
branches:
- main
paths:
- ".github/workflows/compatibility.yml"
- "Makefile"
- "VERSION"
- "bin/**"
- "install.sh"
- "libexec/**"
- "packaging/**"
- "share/**"
- "systemd/**"
- "tests/**"
- "uninstall.sh"
schedule:
- cron: "23 4 * * 1"
workflow_dispatch: null
permissions:
contents: read
concurrency:
group: distro-compatibility-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
arch-smoke:
name: Arch Linux smoke checks
runs-on: ubuntu-24.04
timeout-minutes: 20
steps:
- name: Checkout repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
with:
persist-credentials: false
- name: Test the Arch Linux adapter
run: ./tests/run-distro-smoke.sh --runtime docker --pull arch
- name: Build and inspect the Arch package candidate
if: github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
run: ./tests/run-arch-package.sh --runtime docker
- name: Upload the commit-bound Arch package candidate
if: github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: proton-drive-linux-arch-${{ github.sha }}
path: dist/arch/proton-drive-linux-*.pkg.tar.zst
if-no-files-found: error
retention-days: 7
compression-level: 0