File tree 2 files changed +7
-8
lines changed
2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 37
37
cmds :
38
38
- task : go:build
39
39
vars :
40
- PROJECT_NAME : arduino-create -agent_cli
40
+ PROJECT_NAME : arduino-cloud -agent_cli
41
41
ADDITIONAL_FLAGS : -tags cli
42
42
43
43
go:build-win :
46
46
- rsrc -arch {{.GOARCH}} -manifest manifest.xml # GOARCH shoud be either amd64 or 386
47
47
- task : go:build
48
48
vars :
49
- PROJECT_NAME : arduino-create -agent.exe
49
+ PROJECT_NAME : arduino-cloud -agent.exe
50
50
WIN_FLAGS : -H=windowsgui
51
51
- rm *.syso # rm file to avoid compilation problems on other platforms
52
52
vars :
58
58
cmds :
59
59
- task : go:build
60
60
vars :
61
- PROJECT_NAME : arduino-create -agent_cli.exe
61
+ PROJECT_NAME : arduino-cloud -agent_cli.exe
62
62
ADDITIONAL_FLAGS : -tags cli
63
63
64
64
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/test-go-task/Taskfile.yml
84
84
cmds :
85
85
- poetry run pytest tests
86
86
87
- # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/poetry-task/Taskfile.yml
87
+ # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/poetry-task/Taskfile.yml
88
88
poetry:install-deps :
89
89
desc : Install dependencies managed by Poetry
90
90
cmds :
@@ -138,10 +138,9 @@ tasks:
138
138
- task : go:vet
139
139
- task : go:lint
140
140
141
-
142
141
vars :
143
142
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/release-go-task/Taskfile.yml
144
- PROJECT_NAME : arduino-create -agent
143
+ PROJECT_NAME : arduino-cloud -agent
145
144
# build vars
146
145
COMMIT :
147
146
sh : echo "$(git log --no-show-signature -n 1 --format=%h)"
Original file line number Diff line number Diff line change 27
27
@pytest .fixture (scope = "function" )
28
28
def agent (pytestconfig ):
29
29
if platform .system () == "Windows" :
30
- agent = str (Path (pytestconfig .rootdir ) / "arduino-create -agent_cli.exe" )
30
+ agent = str (Path (pytestconfig .rootdir ) / "arduino-cloud -agent_cli.exe" )
31
31
else :
32
- agent = str (Path (pytestconfig .rootdir ) / "arduino-create -agent" )
32
+ agent = str (Path (pytestconfig .rootdir ) / "arduino-cloud -agent" )
33
33
env = {
34
34
# "ARDUINO_DATA_DIR": data_dir,
35
35
# "ARDUINO_DOWNLOADS_DIR": downloads_dir,
You can’t perform that action at this time.
0 commit comments