Skip to content

Commit 03278ca

Browse files
committed
fix github workflow
1 parent 8baf69c commit 03278ca

2 files changed

Lines changed: 21 additions & 19 deletions

File tree

.github/make.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/make.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: make
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
- name: Print gcc version
17+
run: gcc --version
18+
- name: Install dependencies
19+
run: sudo apt-get -y install gnu-efi
20+
- name: Run make
21+
run: make efi-updatevar

0 commit comments

Comments
 (0)