We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acd4084 commit 58ba44fCopy full SHA for 58ba44f
1 file changed
.github/workflows/cross-build-aarch64.yml .github/workflows/build-aarch64.yml.github/workflows/cross-build-aarch64.yml renamed to .github/workflows/build-aarch64.yml
@@ -1,17 +1,17 @@
1
-name: Cross-build aarch64 kernel
+name: Build aarch64 kernel
2
on: [pull_request, create]
3
4
jobs:
5
build:
6
if: github.event_name == 'pull_request'
7
- name: Cross-build aarch64 kernel
8
- runs-on: ubuntu-latest
+ name: Build aarch64 kernel
+ runs-on: ubuntu-24.04-arm
9
steps:
10
- name: Code checkout
11
uses: actions/checkout@v2
12
13
- name: Install dependencies
14
- run: sudo apt-get update && sudo apt-get install -y make gcc bc bison flex elfutils python3-pyelftools curl patch libelf-dev gcc-aarch64-linux-gnu
+ run: sudo apt-get update && sudo apt-get install -y make gcc bc bison flex elfutils python3-pyelftools curl patch libelf-dev
15
16
- name: Build aarch64 kernel
17
- run: make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu-
+ run: make
0 commit comments