summary refs log tree commit diff
path: root/nixos/release-combined.nix
Commit message (Collapse)AuthorAge
* nixos/nfs: test nfs with kerberos authenticationKai Wohlfahrt2019-12-12
|
* nixos/containers-ip: Test both ipv4 and ipv6 in the same scriptJacek Galowicz2019-11-27
|
* nixosTests: remove xfce4-14 testworldofpeace2019-11-19
|
* nixos/slim: removeworldofpeace2019-11-11
| | | | | | | | The SLIM project is abandoned and their last release was in 2013. Because of this it poses a security risk to systems, no one is working on it or picked up maintenance. It also lacks compatibility with systemd and logind sessions. For users, there liikely isn't anything like slim that's as lightweight in terms of dependencies.
* nixos.tests.fontconfig-default-fonts: initJan Tojnar2019-09-01
| | | | Make sure the fonts.enableDefaultFonts option works.
* nixosTests.xfce4-14: initworldofpeace2019-08-21
| | | | This is pretty much identical to the xfce test we currently have.
* nixosTests.pantheon: enable for all platformsworldofpeace2019-08-07
|
* nixosTests.gnome{xorg}: re-enable on aarch64worldofpeace2019-08-07
|
* nixos/release-combined: re-enable lightdm testworldofpeace2019-08-06
| | | | | This has been tested in the Pantheon test for a year now and it does fine on hydra.
* nixos/release-combined: add gnome3 test for waylandworldofpeace2019-08-06
| | | | | We should be ensuring that this session functions as well because it's default.
* nixosTests.gnome3-xorg: rename from gnome3worldofpeace2019-08-06
|
* nixos/release: make ipv6 tests as important as legacy IP testsAndreas Rammhold2019-03-24
| | | | | | | IPv6 container support broke a while ago and we didn't notice it. Making them part of the (small) release test set should fix that. At this point in time they should be granted the same amount of importance as the legacy IP tests.
* pantheon: init a 5.0worldofpeace2019-01-24
|
* nixos/release-combined.nix: makes aarch64-linux limited supportSamuel Dionne-Riel2018-12-21
| | | | | | | | | | | | | | | | | This is because it will not eval properly with `hydra-eval-jobs`. ``` $ ...hydra/result/bin/hydra-eval-jobs \ --arg nixpkgs '{ outPath = ./.; revCount = 123; shortRev = "4567"; }' \ -I "$PWD" \ nixos/release-combined.nix ``` It fails with: ``` Too many heap sections: Increase MAXHINCR or MAX_HEAP_SECTS ```
* nixos/release-combined.nix: Adds missing aarch64 constituentsSamuel Dionne-Riel2018-12-21
| | | | This will block channel advancing, even if it is limited support.
* nixos/release-combined.nix: Filters failing testsSamuel Dionne-Riel2018-12-19
| | | | And filters out JDK which can't be built on aarch64-linux.
* nixos/release-combined: adds aarch64-linux as supportedSamuel Dionne-Riel2018-12-19
| | | | | | | This was previously removed in 74c4e30842657d09ec1cf000af89f95df27c6632. This will allow hydra to build iso and sd images for aarch64-linux, and share a common channel with the x86-based platforms.
* nixos/release-combined: remove keymap tests from tested jobUli Baum2018-06-06
| | | | | Temporary fix for #41538; non-deterministic failures blocked the release channel.
* nixos/release-combined.nix: fix eval of tested jobUli Baum2018-05-11
| | | | bug introduced by f8d047da50dbc7d012a8d322b4d5e5a0b639733c
* nixos/release-combined.nix: make tests consistent (#40131)xeji2018-05-10
| | | | ... with release-small.nix Tests for small channel should be a subset of tests for full channel.
* Revert "release-combined: don't include tests.chromium"Vladimír Čunát2018-04-27
| | | | | This reverts commit 1d0625499854b583c57267a744111ba8a1d0cfaf. We now get a build and maybe have a workaround #39570; /cc #39476.
* release-combined: don't include tests.chromiumMatthew Justin Bauer2018-04-26
| | | | | | | The chromium package will frequently time out . Note that this is unrelated to the test but a side effect because the test depends on chromium. https://hydra.nixos.org/job/nixos/trunk-combined/nixos.tests.chromium.x86_64-linux See also #39476
* nixos/release: fix evaluation if missing x86Vladimír Čunát2018-03-07
| | | | ... in supportedSystems
* nixos/release*.nix: Clean nixpkgs sources by defaultRobert Hensing2018-02-09
| | | | | | | | | | | Currently, when building NixOS from a git clone, Nix has to copy the entire repo at >1GB into the store by default. That is not necessary and causes a dumping large path message. If you need the old behaviour for some reason, you will have to specify it by passing the path to your repo explicitly as the nixpkgs argument like this: --arg nixpkgs '{outPath = ./.; revCount = 56789; shortRev = "gfedcba"; }'
* nixos/release-combined.nix: Make 32-bit iso_minimal a channel blockerTuomas Tynkkynen2018-02-07
| | | | | | | In practice it already is since the channel update script barfs out if the job fails: https://github.com/NixOS/nixos-channel-scripts/blob/9f96e1e25d197de46d5dbe3c4f81b8d57b9c9821/mirror-nixos-branch.pl#L132
* nixos/release.nix: Introduce callSubTestsOnTheseSystemsTuomas Tynkkynen2018-01-23
| | | | | | | | | | | | | | | | | | | The existing callSubTests seems to already have special-cased code to allow enabling subtests on a single specific system by looking at the `system` attribute in the test arguments. Replace it with a new version similar to the callTestOnTheseSystems because: - It's consistent with the existing functions for creating system-specific tests (though admittedly, the callSubTests special case for `system` predates them) - This approach allows limiting to multiple system types, the previous one inherently allows only one system type. - This also fixes the problem that if you pass in e.g. supportedSystems = [ "aarch64-linux" ], you end up with a tests.chromium job that silently runs on x86_64-linux. - Finally, this causes renames of the jobs like: tests.chromium -> tests.chromium.x86_64-linux to be consistent with the rest of the tests.
* nixos/release.nix: More refactoring for multi-archTuomas Tynkkynen2018-01-19
| | | | | | | | | | | Currently, even if you pass supportedSystems = [ "aarch64-linux" ] you end up with e.g. `nixos.tests.docker` which actually silently runs on x86_64-linux. Using the new callTestOnTheseSystems fixes that. As a side-effect, this also causes a rename of `nixos.tests.docker` -> `nixos.tests.docker.x86_64-linux`, which is IMHO a good thing since it's makes them consistent with the rest of the tests.
* Merge pull request #31805 from gleber/make-switch-to-configuration-pureobadz2017-11-19
|\ | | | | nixos/system: make switch-to-configuration script pure
| * nixos/release: add nixos/tests/switch-test.nix to tested jobGleb Peregud2017-11-19
| |
* | Merge pull request #31569 from gleber/add-mutable-users-testFranz Pletz2017-11-19
|\ \ | | | | | | nixos/tests: add a test for config.users.mutableUsers.
| * | nixos/release: include mutableUsers test to release tests.Gleb Peregud2017-11-19
| |/
* / php: Add nixos test to ensure php-pcre works in httpdSarah Brofeldt2017-11-12
|/
* nixos: limited support archs are not release-criticalFranz Pletz2017-10-14
| | | | | | Lately failing i686 tests like firefox have been blocking channel releases. We're still building the tests for systems with limited support but won't delay a channel release if they fail.
* nixos/release-combined: remove basic kernel testsJoachim Fasting2017-09-16
| | | | | | Arguably, breaking linux-latest should not block a release. Also, booting the kernel + basic sanity checking is implicitly exercised by every other vm test.
* nixos/tests: move kernel-params test to miscJoachim Fasting2017-09-16
|
* nixos/tests: move sysctl test to miscJoachim Fasting2017-09-16
|
* nixos tests: restrict sysctl and plasma5 to x86_64-linuxVladimír Čunát2017-09-11
| | | | | | | - sysctl is new and never succeeded on i686-linux > cannot stat /proc/sys/net/core/bpf_jit_enable: No such file or directory - testing plasma5 on i686 would defeat part of the reason why we ended supporting i686 (lots of stuff built on Hydra)
* nixos/release: xmonad isn't release-criticalFranz Pletz2017-09-10
|
* nixos/release*: fixup evaluation of the tested jobVladimír Čunát2017-09-07
|
* Merge pull request #29040 from NeQuissimus/tests_sysTim Steinbach2017-09-06
|\ | | | | More basic system tests
| * tests: Add environmentTim Steinbach2017-09-05
| |
| * tests: Add kernelParamsTim Steinbach2017-09-05
| |
| * tests: Add sysctlTim Steinbach2017-09-05
| |
* | Merge pull request #29002 from NeQuissimus/docker_edge_module_testTim Steinbach2017-09-06
|\ \ | | | | | | docker: Package in module, tests
| * | docker: Add test for docker-edge, check for proper versions in testsTim Steinbach2017-09-04
| | |
* | | Merge pull request #28989 from NeQuissimus/tests_xmonadTim Steinbach2017-09-06
|\ \ \ | |_|/ |/| | Add XMonad test
| * | Add XMonad testTim Steinbach2017-09-04
| |/
* | tests: linux-copperhead is not release-blockingTim Steinbach2017-09-05
| |
* | Add basic kernel testsTim Steinbach2017-09-05
|/
* nixos/tests: Make the UEFI boot test release-criticalTuomas Tynkkynen2017-08-19
| | | | | | Seems to be working fine, based on the history: https://hydra.nixos.org/job/nixos/trunk-combined/nixos.tests.installer.simpleUefiGummiboot.i686-linux/all https://hydra.nixos.org/job/nixos/trunk-combined/nixos.tests.installer.simpleUefiGummiboot.x86_64-linux/all