File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 60
60
upload-logs-name : logs-linux
61
61
- name : Run act from cli
62
62
run : go run main.go -P ubuntu-latest=node:16-buster-slim -C ./pkg/runner/testdata/ -W ./basic/push.yml
63
+ - name : Run act from cli without docker support
64
+ run : go run -tags WITHOUT_DOCKER main.go -P ubuntu-latest=-self-hosted -C ./pkg/runner/testdata/ -W ./local-action-js/push.yml
63
65
- name : Upload Codecov report
64
66
uses : codecov/codecov-action@v4
65
67
with :
Original file line number Diff line number Diff line change 6
6
"context"
7
7
"runtime"
8
8
9
- "github.com/docker/docker/api/types"
9
+ "github.com/docker/docker/api/types/system "
10
10
"github.com/nektos/act/pkg/common"
11
11
"github.com/pkg/errors"
12
12
)
@@ -46,8 +46,8 @@ func RunnerArch(ctx context.Context) string {
46
46
return runtime .GOOS
47
47
}
48
48
49
- func GetHostInfo (ctx context.Context ) (info types .Info , err error ) {
50
- return types .Info {}, nil
49
+ func GetHostInfo (ctx context.Context ) (info system .Info , err error ) {
50
+ return system .Info {}, nil
51
51
}
52
52
53
53
func NewDockerVolumeRemoveExecutor (volume string , force bool ) common.Executor {
You can’t perform that action at this time.
0 commit comments