lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #141915 from newAM/github-runner

github-runner: add aarch64-linux to platforms

authored by

Jörg Thalheim and committed by
GitHub
e79f2a1e e395815e

+16 -3
+6 -3
pkgs/development/tools/continuous-integration/github-runner/default.nix
··· 29 29 nugetSource = linkFarm "nuget-packages" nugetPackages; 30 30 31 31 dotnetSdk = dotnetCorePackages.sdk_3_1; 32 - runtimeId = "linux-x64"; 32 + runtimeId = 33 + if stdenv.isAarch64 34 + then "linux-arm64" 35 + else "linux-x64"; 33 36 fakeSha1 = "0000000000000000000000000000000000000000"; 34 37 in 35 38 stdenv.mkDerivation rec { ··· 271 274 description = "Self-hosted runner for GitHub Actions"; 272 275 homepage = "https://github.com/actions/runner"; 273 276 license = licenses.mit; 274 - maintainers = with maintainers; [ veehaitch ]; 275 - platforms = [ "x86_64-linux" ]; 277 + maintainers = with maintainers; [ veehaitch newam ]; 278 + platforms = [ "x86_64-linux" "aarch64-linux" ]; 276 279 }; 277 280 }
+10
pkgs/development/tools/continuous-integration/github-runner/deps.nix
··· 19 19 sha256 = "19z4zrchaxcz0a33c33n1qd11z9khj4323nfzsbzah0xxkkj8ka8"; 20 20 }) 21 21 (fetchNuGet { 22 + name = "microsoft.aspnetcore.app.runtime.linux-arm64"; 23 + version = "3.1.19"; 24 + sha256 = "0xspb0xib1zsqnkkqm4s26z27v9idh9k09zziar1cavh2hxxxfcd"; 25 + }) 26 + (fetchNuGet { 22 27 name = "microsoft.aspnet.webapi.client"; 23 28 version = "5.2.4"; 24 29 sha256 = "00fkczf69z2rwarcd8kjjdp47517a0ca6lggn72qbilsp03a5scj"; ··· 42 47 name = "microsoft.netcore.app.runtime.linux-x64"; 43 48 version = "3.1.19"; 44 49 sha256 = "10c9bq1z8j173n9jzamgplbxq101yscwdhksshn1ybisn7cr5g0h"; 50 + }) 51 + (fetchNuGet { 52 + name = "microsoft.netcore.app.runtime.linux-arm64"; 53 + version = "3.1.19"; 54 + sha256 = "0v9nc38bg4k2qk547pl1rlrslwprixqlbhcbbf6pw1ia6261wm5m"; 45 55 }) 46 56 (fetchNuGet { 47 57 name = "microsoft.netcore.platforms";