Skip to content

Fix usage for dksdk.android.pkg.download #9

Fix usage for dksdk.android.pkg.download

Fix usage for dksdk.android.pkg.download #9

Workflow file for this run

##########################################################################
# File: dkcoder\.github\workflows\ninja-build-static.yml #
# #
# Copyright 2024 Diskuv, Inc. #
# #
# Licensed under the Open Software License version 3.0 #
# (the "License"); you may not use this file except in compliance #
# with the License. You may obtain a copy of the License at #
# #
# https://opensource.org/license/osl-3-0-php/ #
# #
##########################################################################
# What does suitable mean?
# 1. On Linux either a low glibc version or none at all (musl static linking)
name: ninja-build suitable for dk.exe bootstrap
on:
push:
jobs:
build-static:
runs-on: ubuntu-latest
# We never want the DkCoder version numbers to conflict with the Ninja releases.
# So use tags that are real Ninja versions. Example: ninja-1.12.1
if: startsWith(github.ref, 'refs/tags/ninja-')
strategy:
matrix:
include:
- platform: linux/amd64
dkml_target_abi: linux_x86_64
testable: true
- platform: linux/arm64
dkml_target_abi: linux_arm64
# Can't run arm64 on Intel machines without an emulator
testable: false
- platform: linux/386
dkml_target_abi: linux_x86
testable: true
name: ${{ matrix.dkml_target_abi }}
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
# We aren't using cross-compilation. Instead we have multiple platforms
# with QEMU emulation providing a native environment. An alternative
# is to use CMake to build Ninja with a cross-compiler.
- name: Build ${{ matrix.platform }} and export to filesystem
uses: docker/build-push-action@v6
with:
platforms: ${{ matrix.platform }}
file: ci/ninja-build-static/Dockerfile
outputs: type=local,dest=out
- name: Display binary format
run: file out/usr/local/src/ninja-build/ninja
- name: Test binary outside container
if: matrix.testable
run: out/usr/local/src/ninja-build/ninja --version
- name: Bundle ninja-${{ matrix.dkml_target_abi }}.zip
run: X=$(pwd) && cd out/usr/local/src/ninja-build/ && zip -y $X/ninja-${{ matrix.dkml_target_abi }} ninja
- name: Upload ninja archive
uses: actions/upload-artifact@v4
with:
retention-days: 30
name: ninja-${{ matrix.dkml_target_abi }}
path: ninja-${{ matrix.dkml_target_abi }}.zip
publish:
permissions:
contents: write
runs-on: ubuntu-latest
needs: build-static
if: startsWith(github.ref, 'refs/tags/ninja-')
steps:
- name: Download ninja archives
uses: actions/download-artifact@v4
with:
pattern: ninja-*
merge-multiple: true
- name: Release
uses: softprops/action-gh-release@v2
with:
files: |
ninja-linux_x86_64.zip
ninja-linux_x86.zip
ninja-linux_arm64.zip