forked from u-root/NiChrome
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request u-root#1 from u-root/merged
Merged webboot and NiChrome
- Loading branch information
Showing
502 changed files
with
90,098 additions
and
17 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Go | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.17 | ||
|
||
- name: Build | ||
run: (cd usb && go build .) | ||
- name: usb | ||
run: ./usb/usb -fetch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
nocontent.efi | ||
linux-stable | ||
linux-firmware | ||
vboot_reference | ||
config.txt | ||
newKern | ||
usb/usb | ||
*.cpio | ||
*~ | ||
uinit/uinit | ||
tcz/ | ||
.bb/ | ||
|
||
# definitely ignore upspin! It may have keys. | ||
upspin/ | ||
|
||
# and ignore .ssh. We DO NOT pull in ~/.ssh. | ||
# if you want .ssh config stuff, you have to put it here. | ||
# This still scares me however. We might want to make | ||
# it not a . file -- they're dangerous. | ||
.ssh/ | ||
|
||
# Also ignore etc | ||
etc/ | ||
|
||
# we install binaries into usr/bin, ignore it. | ||
usr/bin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
sudo: true | ||
language: go | ||
go: | ||
- 1.12.x | ||
env: | ||
- "PATH=/home/travis/gopath/bin:$PATH" | ||
addons: | ||
apt: | ||
packages: | ||
- gcc-4.8 | ||
- bc | ||
- uuid-dev | ||
before_install: | ||
- pwd | ||
- ls -l | ||
install: | ||
- ls | ||
- curl -L -o /home/travis/gopath/bin/dep https://github.com/golang/dep/releases/download/v0.5.0/dep-linux-amd64 | ||
- chmod +x /home/travis/gopath/bin/dep | ||
script: | ||
- cat travis.sh | ||
- bash travis.sh | ||
after_success: | ||
- if [ "$TRAVIS_BRANCH" == "master" ]; then ghr --username u-root --token $GITHUB_TOKEN --replace --prerelease --debug `git describe --always` dist/; fi | ||
|
||
notifications: | ||
slack: u-root:S74GnNB8ekAiqNYTjwbEhkQE |
Oops, something went wrong.