-
Notifications
You must be signed in to change notification settings - Fork 2
37 lines (32 loc) · 806 Bytes
/
linux_arm64.yml
File metadata and controls
37 lines (32 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Build (Linux ARM64)
on:
workflow_call:
workflow_dispatch:
jobs:
build:
permissions:
contents: write
runs-on: ubuntu-24.04-arm
strategy:
fail-fast: false
max-parallel: 1
steps:
- name: Checkout
uses: actions/checkout@v6
with:
ref: ${{github.ref}}
fetch-depth: 1
submodules: recursive
- name: Build imgui so
run: |
cd dll
bash ./build_imgui_linux.sh
cd ..
- name: Commit new libraries
continue-on-error: true
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}"
git add lib/*
git commit -a -m "commit by ${GITHUB_ACTOR} via GitHub Actions"
git push --force-with-lease -u origin ${{github.ref}}