Revert one ipxe commit to unbreak intel 810 25 gigabit NICs (#144) #110
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
name: iPXE Build | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-ipxe: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install nix | |
uses: cachix/install-nix-action@v25 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- name: Build iPXE | |
env: | |
GITHUB_TOKEN: ${{ secrets.Token }} | |
run: (cd binary/; MAKEFLAGS=-j$(nproc) ./script/build_and_pr.sh) |