-
-
Notifications
You must be signed in to change notification settings - Fork 17
36 lines (32 loc) · 884 Bytes
/
terminal.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
name: Terminal
on:
push:
branches: [ "develop", "edge", "release" ]
pull_request:
branches: [ "develop" ]
workflow_dispatch:
env:
VXT_VERSION: 1.2.0
jobs:
netbsd-build:
name: Build (NetBSD AMD64)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test and Build
timeout-minutes: 10
uses: vmactions/netbsd-vm@v1
with:
release: "10.0"
envs: VXT_VERSION
usesh: true
copyback: false
prepare: |
PKG_PATH="https://cdn.NetBSD.org/pub/pkgsrc/packages/NetBSD/$(uname -p)/$(uname -r | cut -d_ -f1)/All" /usr/sbin/pkg_add pkgin
pkgin -y in premake5 gmake libpcap
run: |
git config --global --add safe.directory $(pwd)
premake5 --test gmake
gmake clean test
premake5 gmake
gmake clean terminal-frontend