Skip to content

Commit

Permalink
refactor: change base url
Browse files Browse the repository at this point in the history
  • Loading branch information
maroqijalil committed Aug 17, 2022
1 parent 4b577a6 commit 08721a6
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 08721a6

Please sign in to comment.