FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-native/.github/workflows/amd64_bsd.yml at main · Mizux/python-native · GitHub
Mizux
/
python-native
Public template
Notifications
You must be signed in to change notification settings
Fork
2
Star
10
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-native
/
.github
/
workflows
/
amd64_bsd.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
44 lines (40 loc) · 1.08 KB
Breadcrumbs
python-native
/
.github
/
workflows
/
amd64_bsd.yml
Copy path
File metadata and controls
44 lines (40 loc) · 1.08 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
#
ref: https://github.com/actions/runner-images
name
:
amd64 BSD
on
:
[workflow_dispatch]
concurrency
:
group
:
${{github.workflow}}-${{github.ref}}
cancel-in-progress
:
true
#
Building using the github runner environement directly.
jobs
:
vagrant
:
strategy
:
matrix
:
distro
:
[
freebsd,
netbsd,
openbsd,
]
allow_failure
:
[true]
fail-fast
:
false
name
:
amd64•${{matrix.distro}}
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v7
-
name
:
Virtualbox install
run
:
|
sudo apt update -q
sudo apt install -yq virtualbox
virtualbox --help
-
name
:
Vagrant install
run
:
|
sudo apt update -q
wget https://releases.hashicorp.com/vagrant/2.4.7/vagrant_2.4.7-1_amd64.deb
sudo apt install -y ./vagrant_2.4.7-1_amd64.deb
vagrant --version
-
name
:
Build
run
:
make --directory=ci ${{matrix.distro}}_build
amd64_bsd
:
runs-on
:
ubuntu-latest
needs
:
vagrant
steps
:
-
uses
:
actions/checkout@v7
Back
|
FazBrowse Home
|
New Git URL