chipset_enable.c: Improve handling of AMD FCH protected ranges #9
Workflow file for this run
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: Build Flashrom | |
on: | |
push: | |
branches: | |
- dasharo-release | |
- dasharo-develop | |
- ci | |
pull_request: | |
workflow_dispatch: # Allows manual triggering | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install build dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y git build-essential debhelper pkg-config libpci-dev libusb-1.0-0-dev libftdi1-dev meson | |
- name: Build Flashrom | |
run: make | |
- name: Save Flashrom binary as artifact | |
run: | | |
mkdir artifacts | |
mv flashrom artifacts/ | |
continue-on-error: true # Allow workflow to continue even if 'flashrom' doesn't exist | |
- name: Upload artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: flashrom-artifact | |
path: artifacts/ |