-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
action.yml
40 lines (39 loc) · 1.06 KB
/
action.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
name: 'FreeBSD-vm'
description: 'Run CI in FreeBSD for GitHub Actions'
inputs:
prepare:
description: 'Install some tools before CI runs'
required: false
run:
description: 'The CI command to run'
required: true
release:
description: 'The release version of FreeBSD vm'
required: false
envs:
description: 'The envs to pass into FreeBSD vm'
required: false
mem:
description: 'Set the memory size of the vm'
required: false
cpu:
description: 'Set the cpu cores of the vm'
required: false
nat:
description: 'The NAT ports to FreeBSD vm'
required: false
usesh:
description: 'Use sh instead of the default shell: csh'
required: false
sync:
description: 'How to synchronize the source code to/from the VM, Values can be: rsync(default), and sshfs'
required: false
copyback:
description: 'whether or not to copy the build result repo back from the VM to the host Mac OS, defalt is True'
required: false
branding:
icon: 'activity'
color: 'green'
runs:
using: 'node20'
main: 'index.js'