diff options
author | Daniel Weipert <code@drogueronin.de> | 2023-05-29 13:25:35 +0200 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2023-05-29 13:25:35 +0200 |
commit | 1df20a3f945599b9042480111bcfbeee19aec8aa (patch) | |
tree | 104542a8a0a4adcffb83ca1f338ec73f3cd9eba4 /nix | |
parent | d8addd3c6c00d9d7c5a8f7386603d697af094330 (diff) |
gitlab-ci
Diffstat (limited to 'nix')
-rw-r--r-- | nix/gitlab-ci.nix | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/nix/gitlab-ci.nix b/nix/gitlab-ci.nix deleted file mode 100644 index 4fbba37..0000000 --- a/nix/gitlab-ci.nix +++ /dev/null @@ -1,35 +0,0 @@ -with (import <nixpkgs> {}); -let - jdk = jdk11; - android-composition = import ./nix/android-composition.nix; -in -stdenv.mkDerivation rec { - name = "gitlab-ci"; - - buildInputs = [ - python3Full - gnumake - jdk - android-composition.androidsdk - bazel_4 - ]; - - src = ./.; - - JAVA_HOME = jdk.home; - ANDROID_SDK_ROOT = "${android-composition.androidsdk}/libexec/android-sdk"; - ANDROID_NDK_ROOT = "${ANDROID_SDK_ROOT}/ndk-bundle"; - ANDROID_HOME = "${ANDROID_SDK_ROOT}"; - - preferLocalBuild = true; - dontUnpack = true; - buildPhase = '' - # TODO: replace with nix builtins - python ./android-shell-shellHook.py ${ANDROID_HOME}/build-tools ${ANDROID_HOME}/platforms - - make build -C $src - ''; - installPhase = '' - mv $src/bazel-bin/app/java/dnsproxy.apk $out - ''; -} |