Skip to content

Commit 12ec5ef

Browse files
authored
revert: "ci: updated vcs import to be recursive (#6792)" (#6837)
This reverts commit cfd5b33.
1 parent 07c9c9d commit 12ec5ef

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

.github/actions/docker-build-and-push-cuda/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ runs:
4040
- name: Run vcs import
4141
run: |
4242
mkdir -p src
43-
vcs import --recursive --shallow src < repositories/autoware.repos
43+
vcs import --shallow src < repositories/autoware.repos
4444
shell: bash
4545

4646
- name: Setup Docker Buildx

.github/actions/docker-build-and-push-tools/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ runs:
2929
- name: Run vcs import
3030
run: |
3131
mkdir -p src
32-
vcs import --recursive --shallow src < repositories/simulator.repos
32+
vcs import --shallow src < repositories/simulator.repos
3333
shell: bash
3434

3535
- name: Setup Docker Buildx

.github/actions/docker-build-and-push/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ runs:
4242
- name: Run vcs import
4343
run: |
4444
mkdir -p src
45-
vcs import --recursive --shallow src < repositories/autoware.repos
45+
vcs import --shallow src < repositories/autoware.repos
4646
shell: bash
4747

4848
- name: Setup Docker Buildx

.github/actions/docker-build/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ runs:
3232
- name: Run vcs import
3333
run: |
3434
mkdir -p src
35-
vcs import --recursive --shallow src < repositories/autoware.repos
35+
vcs import --shallow src < repositories/autoware.repos
3636
shell: bash
3737

3838
- name: Import additional repositories
3939
if: ${{ inputs.additional-repos != '' }}
4040
run: |
41-
vcs import --recursive --shallow --force src < ${{ inputs.additional-repos }}
41+
vcs import --shallow --force src < ${{ inputs.additional-repos }}
4242
shell: bash
4343

4444
- name: Cache ccache

.github/workflows/scenario-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
git clone https://github.com/autowarefoundation/autoware.git ~/autoware_ws
4141
cd ~/autoware_ws
4242
mkdir -p src
43-
vcs import --recursive src < repositories/simulator.repos
43+
vcs import src < repositories/simulator.repos
4444
- name: Install ROS dependencies
4545
shell: bash
4646
run: |

docker/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ If you do not need the CUDA drivers, you can also use the smaller image `ghcr.io
1212
```shell
1313
$ git clone git@github.com:autowarefoundation/autoware.git
1414
$ cd autoware
15-
$ vcs import --recursive src < repositories/autoware.repos
15+
$ vcs import src < repositories/autoware.repos
1616
$ docker run -it --rm \
1717
–v $PWD/src/universe/autoware_universe/XXX/autoware_YYY:/autoware/src/autoware_YYY \
1818
ghcr.io/autowarefoundation/autoware:universe-devel-cuda

docker/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,10 @@ clone_repositories() {
133133
cd "$WORKSPACE_ROOT"
134134
if [ ! -d "src" ]; then
135135
mkdir -p src
136-
vcs import --recursive src <repositories/autoware.repos
136+
vcs import src <repositories/autoware.repos
137137
else
138138
echo "Source directory already exists. Updating repositories..."
139-
vcs import --recursive src <repositories/autoware.repos
139+
vcs import src <repositories/autoware.repos
140140
vcs pull src
141141
fi
142142
}

src/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Here is a brief summary of the steps:
2323
cd autoware
2424

2525
# Clone the Autoware source code into src/
26-
vcs import --recursive src < repositories/autoware.repos
26+
vcs import src < repositories/autoware.repos
2727
```
2828

2929
This command will clone and check out the correct versions as defined in [`autoware.repos`](../repositories/autoware.repos)

0 commit comments

Comments
 (0)