Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ACS
Public
HermitCore
rusty-loader
Commits
c02592b6
Commit
c02592b6
authored
Dec 26, 2020
by
Stefan Lankes
Browse files
use crazy-max/ghaction-chocolatey to install required tools
parent
95e5097c
Changes
1
Hide whitespace changes
Inline
Side-by-side
.github/workflows/build.yml
View file @
c02592b6
...
@@ -49,11 +49,20 @@ jobs:
...
@@ -49,11 +49,20 @@ jobs:
run
:
|
run
:
|
brew update && brew install qemu nasm
brew update && brew install qemu nasm
if
:
${{ matrix.os == 'macOS-latest' }}
if
:
${{ matrix.os == 'macOS-latest' }}
-
name
:
Install qemu/nasm (windows)
-
name
:
Install nasm (windows)
uses
:
crazy-max/ghaction-chocolatey@v1
with
:
args
:
install nasm
if
:
${{ matrix.os == 'windows-latest' }}
-
name
:
Install qemu (windows)
uses
:
crazy-max/ghaction-chocolatey@v1
with
:
args
:
install qemu --version=2020.08.14
if
:
${{ matrix.os == 'windows-latest' }}
-
name
:
Set path to qemu/nasm (Windows)
run
:
|
run
:
|
choco install qemu nasm
echo "C:\Program Files\qemu" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
echo "::add-path::C:\Program Files\NASM"
echo "C:\Program Files\nasm" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
echo "::add-path::C:\Program Files\qemu"
if
:
${{ matrix.os == 'windows-latest' }}
if
:
${{ matrix.os == 'windows-latest' }}
-
name
:
Build loader (unix)
-
name
:
Build loader (unix)
run
:
make
run
:
make
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment