diff options
| -rw-r--r-- | xmake/modules/devel/git/init.lua | 56 | ||||
| -rw-r--r-- | xmake/modules/private/service/remote_build/session.lua | 13 |
2 files changed, 69 insertions, 0 deletions
diff --git a/xmake/modules/devel/git/init.lua b/xmake/modules/devel/git/init.lua new file mode 100644 index 000000000..f0a27d821 --- /dev/null +++ b/xmake/modules/devel/git/init.lua @@ -0,0 +1,56 @@ +--!A cross-platform build utility based on Lua +-- +-- Licensed under the Apache License, Version 2.0 (the "License"); +-- you may not use this file except in compliance with the License. +-- You may obtain a copy of the License at +-- +-- http://www.apache.org/licenses/LICENSE-2.0 +-- +-- Unless required by applicable law or agreed to in writing, software +-- distributed under the License is distributed on an "AS IS" BASIS, +-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +-- See the License for the specific language governing permissions and +-- limitations under the License. +-- +-- Copyright (C) 2015-present, TBOOX Open Source Group. +-- +-- @author ruki +-- @file init.lua +-- + +-- imports +import("core.base.option") +import("lib.detect.find_tool") + +-- init project +-- +-- @param opt the argument options +-- +-- @code +-- +-- import("devel.git") +-- +-- git.init() +-- git.init({repodir = "/tmp/xmake"}) +-- +-- @endcode +-- +function main(opt) + + -- init options + opt = opt or {} + + -- find git + local git = assert(find_tool("git"), "git not found!") + + -- init argv + local argv = {"init"} + + -- verbose? + if not option.get("verbose") then + table.insert(argv, "-q") + end + + -- init it + os.vrunv(git.program, argv, {curdir = opt.repodir}) +end diff --git a/xmake/modules/private/service/remote_build/session.lua b/xmake/modules/private/service/remote_build/session.lua index 34a247f59..7d961faaa 100644 --- a/xmake/modules/private/service/remote_build/session.lua +++ b/xmake/modules/private/service/remote_build/session.lua @@ -21,6 +21,7 @@ -- imports import("core.base.object") import("core.base.global") +import("devel.git") import("private.service.config") -- define module @@ -75,6 +76,18 @@ end -- reset sourcedir function session:_reset_sourcedir() + + -- init sourcedir first if .git not exists + local sourcedir = self:sourcedir() + if not os.isdir(sourcedir) then + os.mkdir(sourcedir) + end + if not os.isdir(path.join(sourcedir, ".git")) then + git.init({repodir = sourcedir}) + end + + -- checkout and reset branch + -- TODO end function session:__tostring() |
