Skip to content

Commit

Permalink
Merge pull request #3303 from telepresenceio/sarabraj-v2.15.0-rc.4-gh…
Browse files Browse the repository at this point in the history
…-workflow-fixes

workflow file fixes found durning v2.15.0-rc.3
  • Loading branch information
sarabrajsingh authored Aug 15, 2023
2 parents 51367c7 + 1587d28 commit a3d835a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .github/actions/test-release/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,12 @@ runs:
curl -fL ${{ env.DOWNLOAD_URL }}/${{ inputs.release_version }}/telepresence-windows-amd64.zip -o ./telepresence.zip || { echo "Curl command failed" ; exit 1; }
unzip ./telepresence.zip || { echo "Unzip command failed" ; exit 1; }
fi
if [ "${{ runner.os }}" = "Linux" ] && [ "${{ runner.arch }}" == @(arm64|ARM64) ]; then
curl -fL ${{ env.DOWNLOAD_URL }}/${{ inputs.release_version }}/telepresence-linux-arm64 -o ./telepresence || { echo "Curl command failed" ; exit 1; }
fi
if [ "${{ runner.os }}" = "Linux" ]; then
curl -fL ${{ env.DOWNLOAD_URL }}/${{ inputs.release_version }}/telepresence-linux-amd64 -o ./telepresence || { echo "Curl command failed" ; exit 1; }
if [ "${{ runner.arch }}" == "ARM64" ]; then
curl -fL ${{ env.DOWNLOAD_URL }}/${{ inputs.release_version }}/telepresence-linux-arm64 -o ./telepresence || { echo "Curl command failed" ; exit 1; }
else
curl -fL ${{ env.DOWNLOAD_URL }}/${{ inputs.release_version }}/telepresence-linux-amd64 -o ./telepresence || { echo "Curl command failed" ; exit 1; }
fi
fi
chmod +x ./telepresence
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
- run: |
sudo rm -f /etc/apt/sources.list.d/google-chrome.list
sudo apt-get update
sudo apt-get install -y socat gcc-aarch64-linux-gnu binutils-aarch64-linux-gnu
sudo apt-get install -y make jq
- name: Lint
run: make lint
- name: "Test amd64 build"
Expand Down

0 comments on commit a3d835a

Please sign in to comment.