Skip to content

Commit 4eaf668

Browse files
committed
merge: 'origin/nightly' into 'nightly'
2 parents 31d9047 + e57ac0a commit 4eaf668

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

.github/workflows/build.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Build ISO
2+
3+
on:
4+
push:
5+
branches: [ "nightly" ]
6+
pull_request:
7+
branches: [ "nightly" ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Install host dependencies
16+
run: sudo apt install nasm xorriso
17+
18+
- uses: actions/checkout@v4
19+
with:
20+
submodules: 'recursive'
21+
22+
- name: Generate a default configuration
23+
run: make defconfig
24+
25+
- name: Build the ISO
26+
run: make

CONTRIBUTING.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## Contributing to Zinix
2+
3+
When you contribute code, you affirm that the contribution is your original work
4+
and that you license the work to the project under the project's open source
5+
license. Whether or not you state this explicitly, by submitting any copyrighted
6+
material via pull request, email, or other means you agree to license the
7+
material under the project's open source license and warrant that you have the
8+
legal authority to do so.

0 commit comments

Comments
 (0)