From 11cbcf256b2f8c155741572b9a85a0ab31ccd3a2 Mon Sep 17 00:00:00 2001 From: Anthony Roussel Date: Wed, 28 Dec 2022 23:07:10 +0100 Subject: [PATCH 1/2] bump template to build for 22.11 --- .github/workflows/build.yml | 2 +- .travis.yml | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fa7ff57..3e3c146 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,7 +36,7 @@ jobs: nixPath: - nixpkgs=channel:nixos-unstable - nixpkgs=channel:nixpkgs-unstable - - nixpkgs=channel:nixos-22.05 + - nixpkgs=channel:nixos-22.11 runs-on: ubuntu-latest steps: - name: Checkout repository diff --git a/.travis.yml b/.travis.yml index ef6bb32..ecec570 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,7 +25,7 @@ matrix: include: - env: NIX_PATH=nixpkgs=channel:nixpkgs-unstable - env: NIX_PATH=nixpkgs=channel:nixos-unstable - - env: NIX_PATH=nixpkgs=channel:nixos-20.03 + - env: NIX_PATH=nixpkgs=channel:nixos-22.11 script: - nix-build ci.nix -A buildOutputs @@ -37,4 +37,3 @@ after_success: - if [ -n "${CACHIX_CACHE}" ]; then nix-build ci.nix -A cacheOutputs | cachix push "${CACHIX_CACHE}"; fi - if [[ NUR_REPO != "" && "cron" != "${TRAVIS_EVENT_TYPE}" && "false" = "${TRAVIS_PULL_REQUEST}" && "master" = "${TRAVIS_BRANCH}" ]]; then curl -XPOST "https://nur-update.herokuapp.com/update?repo=${NUR_REPO}"; fi - From 9ea9fdc7c867b3c13203c0c028a9c1d58b4351bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Thu, 29 Dec 2022 10:37:54 +0100 Subject: [PATCH 2/2] drop travis ci support --- .travis.yml | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index ecec570..0000000 --- a/.travis.yml +++ /dev/null @@ -1,39 +0,0 @@ -version: ~> 1.0 -import: nix-community/nix-travis-ci:nix.yml@main - -sudo: false - -env: - global: - # Set this to cache your build results in cachix for faster builds - # in travis and for everyone who uses your cache. - # - # Format: Your cachix cache host name without the ".cachix.org" suffix. - # Example: mycache (for mycache.cachix.org) - # - # For this to work, you also need to set the CACHIX_SIGNING_KEY - # in your repository settings in Travis. - # - CACHIX_CACHE= - # Set this to notify the global nur package registry that changes are - # available. - # - # The repo name as used in - # https://github.com/nix-community/NUR/blob/master/repos.json - - NUR_REPO="" - -matrix: - include: - - env: NIX_PATH=nixpkgs=channel:nixpkgs-unstable - - env: NIX_PATH=nixpkgs=channel:nixos-unstable - - env: NIX_PATH=nixpkgs=channel:nixos-22.11 - -script: - - nix-build ci.nix -A buildOutputs - - nix eval -f default.nix 'lib' - - nix eval -f default.nix 'modules' - - nix eval -f default.nix 'overlays' - -after_success: - - if [ -n "${CACHIX_CACHE}" ]; then nix-build ci.nix -A cacheOutputs | cachix push "${CACHIX_CACHE}"; fi - - if [[ NUR_REPO != "" && "cron" != "${TRAVIS_EVENT_TYPE}" && "false" = "${TRAVIS_PULL_REQUEST}" && "master" = "${TRAVIS_BRANCH}" ]]; then - curl -XPOST "https://nur-update.herokuapp.com/update?repo=${NUR_REPO}"; fi