1
0
forked from Georg/pyacl

Deduplicate data in test matrix YAML

Avoid repetitive definitions by utilizing anchors.

Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
This commit is contained in:
Georg Pfuetzenreuter 2024-09-17 00:50:41 +02:00
parent 1db59c0e61
commit 926b7e2c84
Signed by untrusted user: Georg
GPG Key ID: 1ED2F138E7E6FF57

View File

@ -5,102 +5,62 @@ user:user:r:
read: true
write: false
execute: false
group:
null:
read: true
write: false
execute: false
mask:
null:
read: true
write: false
execute: false
other:
group: &null_ro
null:
read: true
write: false
execute: false
mask: *null_ro
other: *null_ro
user:user:-w-:
user:
user:
read: false
write: true
execute: false
group:
null:
read: true
write: false
execute: false
group: *null_ro
mask:
null:
read: true
write: true
execute: false
other:
null:
read: true
write: false
execute: false
other: *null_ro
user:user:--x:
user:
user:
read: false
write: false
execute: true
group:
null:
read: true
write: false
execute: false
group: *null_ro
mask:
null:
read: true
write: false
execute: true
other:
null:
read: true
write: false
execute: false
other: *null_ro
user:user:r-x:
user:
user:
read: true
write: false
execute: true
group:
null:
read: true
write: false
execute: false
group: *null_ro
mask:
null:
read: true
write: false
execute: true
other:
null:
read: true
write: false
execute: false
other: *null_ro
user:user:rwx:
user:
user:
read: true
write: true
execute: true
group:
null:
read: true
write: false
execute: false
group: *null_ro
mask:
null:
read: true
write: true
execute: true
other:
null:
read: true
write: false
execute: false
other: *null_ro