Skip to content

Commit 8ea4c46

Browse files
Initial commit
0 parents  commit 8ea4c46

File tree

3 files changed

+95
-0
lines changed

3 files changed

+95
-0
lines changed

.github/workflows/bundle.yml

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
name: Create Resource Bundle
2+
3+
on:
4+
push:
5+
branches: '*'
6+
tags: 'v*'
7+
pull_request:
8+
branches:
9+
- master
10+
11+
jobs:
12+
bundle:
13+
name: Bundle
14+
runs-on: macos-10.15
15+
steps:
16+
- name: Install Dependencies
17+
run: brew install ninja pixman gettext libffi glib pkg-config
18+
19+
- name: Clone QEMU
20+
run: git clone --branch v6.0.0 --depth 1 --recurse-submodules https://github.com/qemu/qemu
21+
22+
# Build QEMU to reduce runtime dependencies of `qemu-img`
23+
- name: Build QEMU
24+
run: |
25+
cd qemu
26+
mkdir build
27+
cd build
28+
../configure \
29+
--without-default-features \
30+
--without-default-devices \
31+
--enable-tools
32+
make
33+
34+
- name: Extract bhyve UEFI firmware
35+
uses: vmactions/[email protected]
36+
with:
37+
usesh: true
38+
run: |
39+
pkg update
40+
pkg install -y uefi-edk2-bhyve
41+
cp /usr/local/share/uefi-firmware/BHYVE_UEFI.fd uefi.fd
42+
43+
- name: Install Xhyve
44+
run: |
45+
brew install --HEAD xhyve
46+
47+
- name: Bundle Files
48+
run: |
49+
mkdir work
50+
mv uefi.fd work
51+
cp qemu/build/qemu-img work
52+
cp "$(which xhyve)" work
53+
cp "$(brew --cellar xhyve)/$(brew info xhyve --json | jq .[].installed[].version -r)/share/xhyve/test/userboot.so" work
54+
55+
- name: Archive
56+
run: tar -C work -c -f resources.tar .
57+
58+
- name: Create Release
59+
id: create_release
60+
if: startsWith(github.ref, 'refs/tags/v')
61+
uses: softprops/action-gh-release@v1
62+
with:
63+
name: Resources ${{ steps.version.outputs.VERSION }}
64+
draft: true
65+
files: resources.tar
66+
env:
67+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

license.txt

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Boost Software License - Version 1.0 - August 17th, 2003
2+
3+
Permission is hereby granted, free of charge, to any person or organization
4+
obtaining a copy of the software and accompanying documentation covered by
5+
this license (the "Software") to use, reproduce, display, distribute,
6+
execute, and transmit the Software, and to prepare derivative works of the
7+
Software, and to permit third-parties to whom the Software is furnished to
8+
do so, all subject to the following:
9+
10+
The copyright notices in the Software and this entire statement, including
11+
the above license grant, this restriction and the following disclaimer,
12+
must be included in all copies of the Software, in whole or in part, and
13+
all derivative works of the Software, unless such copies or derivative
14+
works are solely in the form of machine-executable object code generated by
15+
a source language processor.
16+
17+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
20+
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
21+
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
22+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23+
DEALINGS IN THE SOFTWARE.

readme.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Resources
2+
3+
This repository bundles resources used by the
4+
[cross-platform-actions/action](https://github.com/cross-platform-actions/action)
5+
GitHub action.

0 commit comments

Comments
 (0)