-
Notifications
You must be signed in to change notification settings - Fork 3
37 lines (34 loc) · 1.01 KB
/
gitbuild.yml
File metadata and controls
37 lines (34 loc) · 1.01 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
name: Build git packages
on:
schedule:
- cron: '0 0 * * *'
defaults:
run:
shell: bash
jobs:
main-git:
env:
PACKAGE: ${{ matrix.PKGS }}
OBS_AUTH: ${{ secrets.OBS_AUTH }}
OBS_PROJECT: ${{ secrets.OBS_PROJECT }}
runs-on: ubuntu-latest
container: justkdng/archlinux:latest
strategy:
fail-fast: false
matrix:
PKGS: [
"xorgproto-git",
"xorg-server-git",
"xf86-video-amdgpu-git"
]
steps:
- name: Checkout latest commit
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Prepare environment
run: .github/workflows/env
- name: Run prepare()
run: sudo -u build -EH bash -c .github/workflows/prepare
- name: Trigger OBS build
run: .github/workflows/obs_trigger