Skip to content

Commit

Permalink
Merge pull request #4 from ichiro-its/enhancement/change-url
Browse files Browse the repository at this point in the history
[Enhancement] Change Base URL
  • Loading branch information
maroqijalil authored Aug 17, 2022
2 parents c9dd81f + 08721a6 commit 43d3200
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
- name: Add nightly Debian repository and rosdep sources list
run: |
sudo apt update && sudo apt install curl
curl -s http://repository.ichiro-its.org/debian/setup-nightly.bash | bash -s
curl -s http://repository.ichiro-its.org/rosdep/setup.bash | bash -s
curl -s ${{ secrets.SERVER_BASE_URL }}/debian/setup-nightly.bash | bash -s
curl -s ${{ secrets.SERVER_BASE_URL }}/rosdep/setup.bash | bash -s
- name: Build and test workspace
uses: ichiro-its/ros2-build-and-test-action@main
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
- name: Add stable Debian repository and rosdep sources list
run: |
sudo apt update && sudo apt install curl
curl -s http://repository.ichiro-its.org/debian/setup.bash | bash -s
curl -s http://repository.ichiro-its.org/rosdep/setup.bash | bash -s
curl -s ${{ secrets.SERVER_BASE_URL }}/debian/setup.bash | bash -s
curl -s ${{ secrets.SERVER_BASE_URL }}/rosdep/setup.bash | bash -s
- name: Build and test workspace
uses: ichiro-its/ros2-build-and-test-action@main
4 changes: 2 additions & 2 deletions .github/workflows/build-debian-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
- name: Add nightly Debian repository and rosdep sources list
run: |
sudo apt update && sudo apt install curl
curl -s http://repository.ichiro-its.org/debian/setup-nightly.bash | bash -s
curl -s http://repository.ichiro-its.org/rosdep/setup.bash | bash -s
curl -s ${{ secrets.SERVER_BASE_URL }}/debian/setup-nightly.bash | bash -s
curl -s ${{ secrets.SERVER_BASE_URL }}/rosdep/setup.bash | bash -s
- name: Build nightly Debian package
uses: ichiro-its/ros2-build-debian-action@main
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-debian-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
- name: Add stable Debian repository and rosdep sources list
run: |
sudo apt update && sudo apt install curl
curl -s http://repository.ichiro-its.org/debian/setup.bash | bash -s
curl -s http://repository.ichiro-its.org/rosdep/setup.bash | bash -s
curl -s ${{ secrets.SERVER_BASE_URL }}/debian/setup.bash | bash -s
curl -s ${{ secrets.SERVER_BASE_URL }}/rosdep/setup.bash | bash -s
- name: Build stable Debian package
uses: ichiro-its/ros2-build-debian-action@main
Expand Down

0 comments on commit 43d3200

Please sign in to comment.