Skip to content

Commit fa79fca

Browse files
Change executable's name
1 parent 35fc757 commit fa79fca

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11

22
bufferflow_tinyg_old.md
33

4-
/arduino-create-agent*
5-
!/arduino-create-agent*/
4+
/arduino-cloud-agent*
5+
!/arduino-cloud-agent*/
66
rsrc.syso
77

88
snapshot/*

Taskfile.yml

+5-6
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ tasks:
3737
cmds:
3838
- task: go:build
3939
vars:
40-
PROJECT_NAME: arduino-create-agent_cli
40+
PROJECT_NAME: arduino-cloud-agent_cli
4141
ADDITIONAL_FLAGS: -tags cli
4242

4343
go:build-win:
@@ -46,7 +46,7 @@ tasks:
4646
- rsrc -arch {{.GOARCH}} -manifest manifest.xml # GOARCH shoud be either amd64 or 386
4747
- task: go:build
4848
vars:
49-
PROJECT_NAME: arduino-create-agent.exe
49+
PROJECT_NAME: arduino-cloud-agent.exe
5050
WIN_FLAGS: -H=windowsgui
5151
- rm *.syso # rm file to avoid compilation problems on other platforms
5252
vars:
@@ -58,7 +58,7 @@ tasks:
5858
cmds:
5959
- task: go:build
6060
vars:
61-
PROJECT_NAME: arduino-create-agent_cli.exe
61+
PROJECT_NAME: arduino-cloud-agent_cli.exe
6262
ADDITIONAL_FLAGS: -tags cli
6363

6464
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/test-go-task/Taskfile.yml
@@ -84,7 +84,7 @@ tasks:
8484
cmds:
8585
- poetry run pytest tests
8686

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
8888
poetry:install-deps:
8989
desc: Install dependencies managed by Poetry
9090
cmds:
@@ -138,10 +138,9 @@ tasks:
138138
- task: go:vet
139139
- task: go:lint
140140

141-
142141
vars:
143142
# 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
145144
# build vars
146145
COMMIT:
147146
sh: echo "$(git log --no-show-signature -n 1 --format=%h)"

tests/conftest.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
@pytest.fixture(scope="function")
2828
def agent(pytestconfig):
2929
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")
3131
else:
32-
agent = str(Path(pytestconfig.rootdir) / "arduino-create-agent")
32+
agent = str(Path(pytestconfig.rootdir) / "arduino-cloud-agent")
3333
env = {
3434
# "ARDUINO_DATA_DIR": data_dir,
3535
# "ARDUINO_DOWNLOADS_DIR": downloads_dir,

0 commit comments

Comments
 (0)