From e340a5aae98cc0cb5b6ca8a42e0a61dc55fb184f Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Wed, 20 Dec 2023 09:54:36 +0000 Subject: Use guix-channel-job-gexp for gn-transform-databases CI job. * genenetwork-development.scm: Import (guix ci). (transform-genenetwork-database-tests): Delete variable. (%default-guix-channel-with-substitutes): New variable. (transform-genenetwork-database-project): Use guix-channel-job-gexp for transform-genenetwork-database-tests CI job. * genenetwork/development-helper.scm: Delete file. --- genenetwork/development-helper.scm | 47 -------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 genenetwork/development-helper.scm (limited to 'genenetwork') diff --git a/genenetwork/development-helper.scm b/genenetwork/development-helper.scm deleted file mode 100644 index 20edfbf..0000000 --- a/genenetwork/development-helper.scm +++ /dev/null @@ -1,47 +0,0 @@ -;;; genenetwork-machines --- Guix configuration for genenetwork machines -;;; Copyright © 2022, 2023 Arun Isaac -;;; Copyright © 2022 Frederick Muriuki Muriithi -;;; -;;; This file is part of genenetwork-machines. -;;; -;;; genenetwork-machines is free software: you can redistribute it -;;; and/or modify it under the terms of the GNU General Public License -;;; as published by the Free Software Foundation, either version 3 of -;;; the License, or (at your option) any later version. -;;; -;;; genenetwork-machines is distributed in the hope that it will be -;;; useful, but WITHOUT ANY WARRANTY; without even the implied -;;; warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -;;; See the GNU General Public License for more details. -;;; -;;; You should have received a copy of the GNU General Public License -;;; along with genenetwork-machines. If not, see -;;; . - -(define-module (genenetwork development-helper) - #:use-module (ice-9 match) - #:use-module (guix gexp) - #:use-module (guix profiles) - #:use-module (guix search-paths) - #:use-module (forge build utils)) - -(define (command-in-source-gexp source profile command) - "Return a G-expression that runs COMMAND in PROFILE and with SOURCE -as the current directory. SOURCE and PROFILE are store items. COMMAND -is a list of strings specifying the command to be executed." - (with-imported-modules '((guix build utils)) - (with-profile profile - #~(begin - (use-modules (rnrs exceptions) - (guix build utils)) - - (chdir #$source) - (guard (condition ((invoke-error? condition) - (format (current-error-port) - "`~a~{ ~a~}' failed with exit status ~a~%" - (invoke-error-program condition) - (invoke-error-arguments condition) - (invoke-error-exit-status condition)) - (exit #f))) - (apply invoke '#$command)) - (mkdir-p #$output))))) -- cgit v1.2.3