mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-24 20:57:19 -08:00
Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
commit
b5d7f6d7ce
1 changed files with 38 additions and 0 deletions
38
.github/workflows/ci.yml
vendored
38
.github/workflows/ci.yml
vendored
|
@ -99,3 +99,41 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: sourcegit.linux-x64
|
name: sourcegit.linux-x64
|
||||||
path: sourcegit.linux-x64.tar
|
path: sourcegit.linux-x64.tar
|
||||||
|
build-linux-arm64:
|
||||||
|
name: Build Linux (arm64)
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
steps:
|
||||||
|
- name: Checkout sources
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- name: Setup .NET
|
||||||
|
uses: actions/setup-dotnet@v4
|
||||||
|
with:
|
||||||
|
dotnet-version: 8.0.x
|
||||||
|
- name: Configure arm64 packages
|
||||||
|
run: |
|
||||||
|
sudo dpkg --add-architecture arm64
|
||||||
|
echo 'deb [arch=arm64] http://ports.ubuntu.com/ubuntu-ports/ focal main restricted
|
||||||
|
deb [arch=arm64] http://ports.ubuntu.com/ubuntu-ports/ focal-updates main restricted
|
||||||
|
deb [arch=arm64] http://ports.ubuntu.com/ubuntu-ports/ focal-backports main restricted' \
|
||||||
|
| sudo tee /etc/apt/sources.list.d/arm64.list
|
||||||
|
sudo sed -i -e 's/^deb http/deb [arch=amd64] http/g' /etc/apt/sources.list
|
||||||
|
sudo sed -i -e 's/^deb mirror/deb [arch=amd64] mirror/g' /etc/apt/sources.list
|
||||||
|
- name: Install cross-compiling dependencies
|
||||||
|
run: |
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install clang llvm gcc-aarch64-linux-gnu zlib1g-dev:arm64
|
||||||
|
- name: Build
|
||||||
|
run: dotnet build -c Release
|
||||||
|
- name: Publish
|
||||||
|
run: dotnet publish src/SourceGit.csproj -c Release -o publish -r linux-arm64
|
||||||
|
- name: Rename Executable File
|
||||||
|
run: mv publish/SourceGit publish/sourcegit
|
||||||
|
- name: Packing Program
|
||||||
|
run: tar -cvf sourcegit.linux-arm64.tar -C publish/ .
|
||||||
|
- name: Upload Artifact
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: sourcegit.linux-arm64
|
||||||
|
path: sourcegit.linux-arm64.tar
|
||||||
|
|
Loading…
Reference in a new issue