Skip to content

Commit

Permalink
Fix: failed to checkout nextflow non-existing branch
Browse files Browse the repository at this point in the history
  • Loading branch information
mrtamm committed Sep 11, 2024
1 parent 2939697 commit 31edfc2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/nextflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Install Nextflow
run: |
cd ..
git clone https://github.com/nextflow-io/nextflow/ -b tes-update-1.1
git clone https://github.com/nextflow-io/nextflow/ -b v24.04.4 --depth 1
cd nextflow
make compile
Expand Down
2 changes: 2 additions & 0 deletions tests/funnel_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,8 @@ func (f *Funnel) StartServerInDocker(containerName, imageName string, extraArgs
args = append(args, extraArgs...)
args = append(args, imageName, "funnel", "server", "run", "--config", "/opt/funnel_config.yml")

fmt.Println("DOCKER args:", strings.Join(args, " "))

cmd := exec.Command("docker", args...)
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
Expand Down

0 comments on commit 31edfc2

Please sign in to comment.