Skip to content

run.sh: Migrate to EDK2 nightly builds by 'retrage' #30

run.sh: Migrate to EDK2 nightly builds by 'retrage'

run.sh: Migrate to EDK2 nightly builds by 'retrage' #30

Workflow file for this run

name: build
on: [push]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
target: x86_64-unknown-linux-gnu
components: rust-src
- name: Install cargo-make
run: cargo install --no-default-features cargo-make
- uses: awalsh128/cache-apt-pkgs-action@v1
with:
packages: make nasm dosfstools mtools zstd unzip wget
- name: Build
run: cargo make --no-workspace
- name: Create artifact
run: tar -czvf d3os.tar.gz d3os.img run.sh README.md
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: D3OS
path: d3os.tar.gz