Skip to content

Commit

Permalink
Merge pull request u-root#1 from u-root/merged
Browse files Browse the repository at this point in the history
Merged webboot and NiChrome
  • Loading branch information
rminnich authored Dec 27, 2021
2 parents b4a8b18 + 8ebf11a commit 86ca4d3
Show file tree
Hide file tree
Showing 502 changed files with 90,098 additions and 17 deletions.
15 changes: 0 additions & 15 deletions .gitignore

This file was deleted.

2 changes: 0 additions & 2 deletions README.md

This file was deleted.

24 changes: 24 additions & 0 deletions nichrome/.github/workflows/go.yml
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
27 changes: 27 additions & 0 deletions nichrome/.gitignore
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/
27 changes: 27 additions & 0 deletions nichrome/.travis.yml
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
Loading

0 comments on commit 86ca4d3

Please sign in to comment.