-
Notifications
You must be signed in to change notification settings - Fork 20
52 lines (46 loc) · 1.42 KB
/
sb-hosts.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
name: sb-hosts
on:
push:
paths:
- 'net-misc/sb-hosts/**'
pull_request:
paths:
- 'net-misc/sb-hosts/**'
jobs:
ebuild:
if: github.repository == 'PF4Public/gentoo-overlay'
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
use:
- fakenews gambling porn social
- fakenews gambling social
- fakenews social
- gambling
- ''
steps:
- name: Check out the repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v45
- name: Prepare cache dir
id: prepare
run: |
echo "workspace=${GITHUB_WORKSPACE}" >> $GITHUB_OUTPUT
mkdir -p "${GITHUB_WORKSPACE}/distfiles"
- name: Calculate the hash of changed files
id: hash
run: |
echo "digest=$( echo "${{ steps.changed-files.outputs.all_changed_files }}" | md5sum | cut -f 1 -d ' ' )" >> $GITHUB_OUTPUT
echo "modified=$( echo "${{ steps.changed-files.outputs.all_changed_files }}" | tr '\n' ' ' )" >> $GITHUB_OUTPUT
- name: Install ${{ github.workflow }} with "${{ matrix.use }}"
uses: pf4public/gentoo-docker-action@master
with:
modified: ${{ steps.hash.outputs.modified }}
tool: ebuild
action: install
params: ${{ matrix.use }}