Skip to content

Commit

Permalink
Merge pull request #1 from uulm-janbaudisch/aarch64
Browse files Browse the repository at this point in the history
Test
  • Loading branch information
uulm-janbaudisch authored Aug 20, 2024
2 parents af88aae + 188382b commit ab295fa
Show file tree
Hide file tree
Showing 42 changed files with 1,766 additions and 306 deletions.
76 changes: 58 additions & 18 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ on:

jobs:
Check:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Nix
uses: DeterminateSystems/nix-installer-action@v10
uses: DeterminateSystems/nix-installer-action@v13
- name: Cache
uses: DeterminateSystems/magic-nix-cache-action@v4
uses: DeterminateSystems/magic-nix-cache-action@v7
- name: Check
run: nix flake check -L

Expand All @@ -21,43 +21,83 @@ jobs:
fail-fast: false
matrix:
target:
# - double: aarch64-linux # target we are building for
# system: aarch64-linux # system we are building on
# emulated: true # whether this build is being emulated
# runner: ubuntu-24.04 # GitHub runner the build is running on
# interpreter: /lib/ld-linux-aarch64.so.1 # path to libc interpreter
- double: x86_64-linux
runner: ubuntu-latest
- double: x86_64-darwin
runner: macos-13
- double: aarch64-darwin
runner: macos-latest
system: x86_64-linux
runner: ubuntu-24.04
interpreter: /lib64/ld-linux-x86-64.so.2
# - double: x86_64-darwin
# system: x86_64-darwin
# runner: macos-13
# - double: aarch64-darwin
# system: aarch64-darwin
# runner: macos-latest
variant:
- flake: ddnnife
artifact: ''
- flake: bundled-d4
- flake: ddnnife-d4-bundled
artifact: '-d4'
exclude:
- target: { double: x86_64-linux }
variant: { flake: ddnnife }
# - target: { double: aarch64-linux }
# variant: { flake: ddnnife }
include:
- target: { double: x86_64-windows, runner: ubuntu-latest }
variant: { flake: ddnnife-windows, artifact: '' }
- target: { double: x86_64-windows, runner: ubuntu-latest }
variant: { flake: bundled-d4-windows, artifact: '-d4' }
# - target: { double: aarch64-linux, system: aarch64-linux, emulated: true, runner: ubuntu-24.04 }
# variant: { flake: ddnnife-static, artifact: '' }
- target: { double: x86_64-linux, system: x86_64-linux, runner: ubuntu-24.04, docs: true }
variant: { flake: ddnnife-static, artifact: '' }
# - target: { double: x86_64-windows, system: x86_64-linux, runner: ubuntu-24.04 }
# variant: { flake: ddnnife-windows, artifact: '' }
# - target: { double: x86_64-windows, system: x86_64-linux, runner: ubuntu-24.04 }
# variant: { flake: ddnnife-windows-d4-bundled, artifact: '-d4' }
runs-on: ${{ matrix.target.runner }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: QEMU
if: ${{ matrix.target.emulated }}
run: sudo apt-get install -y qemu-user-static
- name: Nix
uses: DeterminateSystems/nix-installer-action@v10
uses: DeterminateSystems/nix-installer-action@v13
with:
extra-conf: extra-platforms = ${{ matrix.target.system }}
- name: Cache
uses: DeterminateSystems/magic-nix-cache-action@v4
uses: DeterminateSystems/magic-nix-cache-action@v7
- name: Build
run: nix build -L .#${{ matrix.variant.flake }}
run: nix build -L .#packages.${{ matrix.target.system }}.${{ matrix.variant.flake }}
- name: Set interpreter
if: ${{ matrix.target.double == 'x86_64-linux' && matrix.variant.flake == 'bundled-d4' }}
if: ${{ matrix.target.interpreter }}
run: |
cp -rL result output
rm -rf result
chmod +w output/bin/*
nix run nixpkgs#patchelf -- --set-interpreter /lib64/ld-linux-x86-64.so.2 output/bin/*
nix run nixpkgs#patchelf -- --set-interpreter ${{ matrix.target.interpreter }} output/bin/*
chmod -w output/bin/*
mv output result
- name: Upload
uses: actions/upload-artifact@v4
with:
name: ddnnife-${{ matrix.target.double }}${{ matrix.variant.artifact }}
path: result
- name: Docs
if: ${{ matrix.target.docs }}
run: |
nix build .#documentation
mkdir docs
cp -rL result/share/doc docs/rust
- name: Upload (docs)
if: ${{ matrix.target.docs }}
uses: actions/upload-artifact@v4
with:
name: pages-rust
path: docs

Pages:
if: github.ref == 'refs/heads/main'
needs: Build
uses: ./.github/workflows/Pages.yaml
71 changes: 42 additions & 29 deletions .github/workflows/Container.yaml
Original file line number Diff line number Diff line change
@@ -1,29 +1,42 @@
name: Container

on:
- push

env:
REGISTRY: ghcr.io
IMAGE_NAME: softvare-group/ddnnife
TAG: ${{ github.ref_name }}

jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Nix
uses: DeterminateSystems/nix-installer-action@v10
- name: Cache
uses: DeterminateSystems/magic-nix-cache-action@v4
- name: Build
run: nix build -L .#container
- name: Login
run: nix run nixpkgs#skopeo -- login $REGISTRY --username ${{ github.actor }} --password ${{ secrets.GITHUB_TOKEN }}
- name: Push
run: nix run nixpkgs#skopeo -- copy docker-archive:result docker://$REGISTRY/$IMAGE_NAME:$TAG
- name: Push latest tag
if: ${{ github.ref_type == 'tag' }}
run: nix run nixpkgs#skopeo -- copy docker://$REGISTRY/$IMAGE_NAME:$TAG docker://$REGISTRY/$IMAGE_NAME:latest
#name: Container
#
#on:
# - push
#
#env:
# REGISTRY: ghcr.io
# IMAGE_NAME: softvare-group/ddnnife
# TAG: ${{ github.ref_name }}
#
#jobs:
# Build:
# strategy:
# matrix:
# target:
# - double: aarch64-linux # target we are building for
# architecture: arm64 # container architecture label
# emulated: true # whether this build is being emulated
# - double: x86_64-linux
# architecture: amd64
# runs-on: ubuntu-24.04
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: QEMU
# if: ${{ matrix.target.emulated }}
# run: sudo apt-get install -y qemu-user-static
# - name: Nix
# uses: DeterminateSystems/nix-installer-action@v13
# with:
# extra-conf: extra-platforms = ${{ matrix.target.double }}
# - name: Cache
# uses: DeterminateSystems/magic-nix-cache-action@v7
# - name: Build
# run: nix build -L .#packages.${{ matrix.target.double }}.container
# - name: Login
# run: nix run nixpkgs#skopeo -- login $REGISTRY --username ${{ github.actor }} --password ${{ secrets.GITHUB_TOKEN }}
# - name: Push
# run: nix run nixpkgs#skopeo -- copy docker-archive:result docker://$REGISTRY/$IMAGE_NAME:$TAG-${{ matrix.target.architecture }}
# - name: Push latest tag
# if: ${{ github.ref_type == 'tag' }}
# run: nix run nixpkgs#skopeo -- copy docker://$REGISTRY/$IMAGE_NAME:$TAG-${{ matrix.target.architecture }} docker://$REGISTRY/$IMAGE_NAME:latest-${{ matrix.target.architecture }}
122 changes: 122 additions & 0 deletions .github/workflows/Kotlin.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
name: Kotlin

on:
- push

jobs:
# Builds the library and binding for a single target.
Library:
strategy:
fail-fast: false
matrix:
target:
# - double: aarch64-linux
# jna: linux-aarch64
# runner: ubuntu-24.04
# emulated: true
- double: x86_64-linux
jna: linux-x86-64
runner: ubuntu-24.04
- double: aarch64-darwin
jna: darwin-aarch64
runner: macos-latest
# - double: x86_64-darwin
# jna: darwin-x86-64
# runner: macos-13
variant:
- ''
# - '-d4'
exclude:
- target: { double: x86_64-darwin }
variant: '-d4'
runs-on: ${{ matrix.target.runner }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: QEMU
if: ${{ matrix.target.emulated }}
run: sudo apt-get install -y qemu-user-static
- name: Nix
uses: DeterminateSystems/nix-installer-action@v13
with:
extra-conf: extra-platforms = ${{ matrix.target.double }}
- name: Cache
uses: DeterminateSystems/magic-nix-cache-action@v7
- name: Build (bindgen)
run: |
nix build -L .#bindgen
cp -L result/bin/uniffi-bindgen .
- name: Build (library)
run: |
nix build -L .#libddnnife${{ matrix.variant }}
mkdir -p libraries/${{ matrix.target.jna }}
cp -L result/lib/*ddnnife* libraries/${{ matrix.target.jna }}/
- name: Upload (library)
uses: actions/upload-artifact@v4
with:
name: libddnnife${{ matrix.variant }}-${{ matrix.target.double }}
path: libraries
- name: Build
run: |
cd bindings/kotlin
gradle shadowJar --no-daemon -Plibraries=../../libraries -Pbindgen=../../uniffi-bindgen
- name: Test
run: |
cd bindings/kotlin
gradle test --no-daemon -Plibraries=../../libraries -Pbindgen=../../uniffi-bindgen
# Creates one JAR for all platforms.
Package:
needs: Library
strategy:
fail-fast: false
matrix:
variant:
- ''
# - '-d4'
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Nix
uses: DeterminateSystems/nix-installer-action@v13
- name: Build (bindgen)
run: |
nix build -L .#bindgen
cp -L result/bin/uniffi-bindgen .
- name: Download (libraries)
uses: actions/download-artifact@v4
with:
path: libraries
pattern: libddnnife${{ matrix.variant }}-*
merge-multiple: true
- name: Build
run: |
cd bindings/kotlin
gradle shadowJar --no-daemon -Plibraries=../../libraries -Pbindgen=../../uniffi-bindgen
- name: Test
run: |
cd bindings/kotlin
gradle test --no-daemon -Plibraries=../../libraries -Pbindgen=../../uniffi-bindgen
- name: Upload
uses: actions/upload-artifact@v4
with:
name: ddnnife-kotlin${{ matrix.variant }}
path: bindings/kotlin/build/libs
- name: Docs
run: |
cd bindings/kotlin
gradle dokkaHtml --no-daemon -Plibraries=../../libraries -Pbindgen=../../uniffi-bindgen
mkdir docs
mv build/dokka/html docs/kotlin
- name: Upload (docs)
uses: actions/upload-artifact@v4
with:
name: pages-kotlin
path: bindings/kotlin/docs

# Deploys all pages, including the Kotlin documentation generated above.
Pages:
if: github.ref == 'refs/heads/main'
needs: Package
uses: ./.github/workflows/Pages.yaml
23 changes: 23 additions & 0 deletions .github/workflows/Pages.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Pages

on: workflow_call

jobs:
Deploy:
permissions:
pages: write
id-token: write
runs-on: ubuntu-latest
steps:
- name: Download
uses: actions/download-artifact@v4
with:
path: pages
pattern: pages-*
merge-multiple: true
- name: Upload
uses: actions/upload-pages-artifact@v3
with:
path: pages
- name: Deploy
uses: actions/deploy-pages@v4
56 changes: 28 additions & 28 deletions .github/workflows/Portable.yaml
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
name: Portable

on:
- push

jobs:
Build:
strategy:
fail-fast: false
matrix:
target:
- double: x86_64-linux
runner: ubuntu-latest
runs-on: ${{ matrix.target.runner }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Nix
uses: DeterminateSystems/nix-installer-action@v10
- name: Cache
uses: DeterminateSystems/magic-nix-cache-action@v4
- name: Bundle
run: nix bundle --bundler github:DavHau/nix-portable -o bundle .#ddnnife-d4
- name: Upload
uses: actions/upload-artifact@v4
with:
name: ddnnife-${{ matrix.target.double }}-d4-portable
path: bundle
#name: Portable
#
#on:
# - push
#
#jobs:
# Build:
# strategy:
# fail-fast: false
# matrix:
# target:
# - double: x86_64-linux
# runner: ubuntu-latest
# runs-on: ${{ matrix.target.runner }}
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: Nix
# uses: DeterminateSystems/nix-installer-action@v13
# - name: Cache
# uses: DeterminateSystems/magic-nix-cache-action@v7
# - name: Bundle
# run: nix bundle --bundler github:DavHau/nix-portable -o bundle .#ddnnife-d4
# - name: Upload
# uses: actions/upload-artifact@v4
# with:
# name: ddnnife-${{ matrix.target.double }}-d4-portable
# path: bundle
Loading

0 comments on commit ab295fa

Please sign in to comment.