Use current git branch by default when setting up cypress container

Signed-off-by: Louis Chemineau <louis@chmn.me>
This commit is contained in:
Louis Chemineau 2023-01-18 17:00:24 +01:00
parent 46dcbd3b77
commit 535c228d57
1 changed files with 6 additions and 1 deletions

View File

@ -26,6 +26,7 @@
import Docker from 'dockerode'
import waitOn from 'wait-on'
import tar from 'tar'
import { execSync } from 'child_process'
export const docker = new Docker()
@ -37,7 +38,7 @@ const SERVER_IMAGE = 'ghcr.io/nextcloud/continuous-integration-shallow-server'
*
* @param {string} branch the branch of your current work
*/
export const startNextcloud = async function(branch = 'master'): Promise<any> {
export const startNextcloud = async function(branch: string = getCurrentGitBranch()): Promise<any> {
try {
// Pulling images
@ -245,3 +246,7 @@ const runExec = async function(
const sleep = function(milliseconds: number) {
return new Promise((resolve) => setTimeout(resolve, milliseconds))
}
const getCurrentGitBranch = function() {
return execSync('git rev-parse --abbrev-ref HEAD').toString().trim() || 'master'
}