Skip to content

Commit

Permalink
[APP-712] Update URLs to use https (#2272)
Browse files Browse the repository at this point in the history
  • Loading branch information
Otterverse authored Apr 24, 2023
1 parent cabd600 commit ba0bb6f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/appimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
if: github.event_name == 'workflow_dispatch' || github.event_name == 'push'
strategy:
matrix:
arch: [[x64, qemu-host], [arm64, qemu-host]]
arch: [[x64, qemu-host], [arm64, qemu-host], [arm64, pi4]]
needs: appimage
runs-on: ${{ matrix.arch }}
timeout-minutes: 15
Expand All @@ -109,7 +109,7 @@ jobs:
export TEST_DIR=`mktemp -d -t test-viam-server-XXXXXX`
cd $TEST_DIR
curl -o viam-server http://packages.viam.com/apps/viam-server/testing/appimage/${{ needs.appimage.outputs.date }}/${{ github.sha }}/viam-server-latest-`uname -m`.AppImage
curl -o viam-server https://storage.googleapis.com/packages.viam.com/apps/viam-server/testing/appimage/${{ needs.appimage.outputs.date }}/${{ github.sha }}/viam-server-latest-`uname -m`.AppImage
chmod 755 viam-server
export RAND_PORT=$((30000 + $RANDOM))
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/code-coverage-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ jobs:
recreate: true
message: |
AppImages ready!
<http://packages.viam.com/apps/viam-server/viam-server-pr-${{ env.PR_NUMBER }}-x86_64.AppImage>
<http://packages.viam.com/apps/viam-server/viam-server-pr-${{ env.PR_NUMBER }}-aarch64.AppImage>
<https://storage.googleapis.com/packages.viam.com/apps/viam-server/viam-server-pr-${{ env.PR_NUMBER }}-x86_64.AppImage>
<https://storage.googleapis.com/packages.viam.com/apps/viam-server/viam-server-pr-${{ env.PR_NUMBER }}-aarch64.AppImage>
- name: Add Static Build Links
if: ${{ env.STATIC }}
Expand All @@ -49,5 +49,5 @@ jobs:
recreate: true
message: |
Static binaries ready!
<http://packages.viam.com/apps/viam-server/viam-server-pr-${{ env.PR_NUMBER }}-x86_64>
<http://packages.viam.com/apps/viam-server/viam-server-pr-${{ env.PR_NUMBER }}-aarch64>
<https://storage.googleapis.com/packages.viam.com/apps/viam-server/viam-server-pr-${{ env.PR_NUMBER }}-x86_64>
<https://storage.googleapis.com/packages.viam.com/apps/viam-server/viam-server-pr-${{ env.PR_NUMBER }}-aarch64>
4 changes: 2 additions & 2 deletions .github/workflows/staticbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
if: github.event_name == 'workflow_dispatch' || github.event_name == 'push'
strategy:
matrix:
arch: [[x64, qemu-host], [arm64, qemu-host]]
arch: [[x64, qemu-host], [arm64, qemu-host], [arm64, pi4]]
needs: static
runs-on: ${{ matrix.arch }}
timeout-minutes: 15
Expand All @@ -109,7 +109,7 @@ jobs:
export TEST_DIR=`mktemp -d -t test-viam-server-XXXXXX`
cd $TEST_DIR
curl -o viam-server http://packages.viam.com/apps/viam-server/testing/static/${{ needs.static.outputs.date }}/${{ github.sha }}/viam-server-latest-`uname -m`
curl -o viam-server https://storage.googleapis.com/packages.viam.com/apps/viam-server/testing/static/${{ needs.static.outputs.date }}/${{ github.sha }}/viam-server-latest-`uname -m`
chmod 755 viam-server
export RAND_PORT=$((30000 + $RANDOM))
Expand Down
2 changes: 1 addition & 1 deletion etc/packaging/appimages/viam-server-aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ AppDir:
AIX_TARGET: usr/bin/viam-server
AppImage:
arch: aarch64
update-information: zsync|http://packages.viam.com/apps/viam-server/viam-server-${BUILD_CHANNEL}-aarch64.AppImage.zsync
update-information: zsync|https://storage.googleapis.com/packages.viam.com/apps/viam-server/viam-server-${BUILD_CHANNEL}-aarch64.AppImage.zsync
2 changes: 1 addition & 1 deletion etc/packaging/appimages/viam-server-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ AppDir:
AIX_TARGET: usr/bin/viam-server
AppImage:
arch: x86_64
update-information: zsync|http://packages.viam.com/apps/viam-server/viam-server-${BUILD_CHANNEL}-x86_64.AppImage.zsync
update-information: zsync|https://storage.googleapis.com/packages.viam.com/apps/viam-server/viam-server-${BUILD_CHANNEL}-x86_64.AppImage.zsync

0 comments on commit ba0bb6f

Please sign in to comment.