mirror of
https://code.forgejo.org/forgejo/runner.git
synced 2025-08-11 17:50:58 +00:00
* fix: remove local cache if remote is changed * test: TestCloneIfRequired https://github.com/nektos/act/pull/2284 Co-authored-by: Jason Song <i@wolfogre.com> Reviewed-on: https://code.forgejo.org/forgejo/act/pulls/142 Reviewed-by: earl-warren <earl-warren@noreply.code.forgejo.org> Co-authored-by: achyrva <achyrva@noreply.code.forgejo.org> Co-committed-by: achyrva <achyrva@noreply.code.forgejo.org>
This commit is contained in:
parent
e21cc1ef63
commit
422e17bc27
2 changed files with 39 additions and 0 deletions
|
@ -238,6 +238,15 @@ type NewGitCloneExecutorInput struct {
|
||||||
|
|
||||||
// CloneIfRequired ...
|
// CloneIfRequired ...
|
||||||
func CloneIfRequired(ctx context.Context, refName plumbing.ReferenceName, input NewGitCloneExecutorInput, logger log.FieldLogger) (*git.Repository, error) {
|
func CloneIfRequired(ctx context.Context, refName plumbing.ReferenceName, input NewGitCloneExecutorInput, logger log.FieldLogger) (*git.Repository, error) {
|
||||||
|
// If the remote URL has changed, remove the directory and clone again.
|
||||||
|
if r, err := git.PlainOpen(input.Dir); err == nil {
|
||||||
|
if remote, err := r.Remote("origin"); err == nil {
|
||||||
|
if len(remote.Config().URLs) > 0 && remote.Config().URLs[0] != input.URL {
|
||||||
|
_ = os.RemoveAll(input.Dir)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
r, err := git.PlainOpen(input.Dir)
|
r, err := git.PlainOpen(input.Dir)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
var progressWriter io.Writer
|
var progressWriter io.Writer
|
||||||
|
|
|
@ -12,6 +12,8 @@ import (
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
|
|
||||||
|
"github.com/nektos/act/pkg/common"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestFindGitSlug(t *testing.T) {
|
func TestFindGitSlug(t *testing.T) {
|
||||||
|
@ -258,3 +260,31 @@ func gitCmd(args ...string) error {
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestCloneIfRequired(t *testing.T) {
|
||||||
|
tempDir := t.TempDir()
|
||||||
|
ctx := context.Background()
|
||||||
|
|
||||||
|
t.Run("clone", func(t *testing.T) {
|
||||||
|
repo, err := CloneIfRequired(ctx, "refs/heads/main", NewGitCloneExecutorInput{
|
||||||
|
URL: "https://github.com/actions/checkout",
|
||||||
|
Dir: tempDir,
|
||||||
|
}, common.Logger(ctx))
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.NotNil(t, repo)
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("clone different remote", func(t *testing.T) {
|
||||||
|
repo, err := CloneIfRequired(ctx, "refs/heads/main", NewGitCloneExecutorInput{
|
||||||
|
URL: "https://github.com/actions/setup-go",
|
||||||
|
Dir: tempDir,
|
||||||
|
}, common.Logger(ctx))
|
||||||
|
require.NoError(t, err)
|
||||||
|
require.NotNil(t, repo)
|
||||||
|
|
||||||
|
remote, err := repo.Remote("origin")
|
||||||
|
require.NoError(t, err)
|
||||||
|
require.Len(t, remote.Config().URLs, 1)
|
||||||
|
assert.Equal(t, "https://github.com/actions/setup-go", remote.Config().URLs[0])
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue