Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
john-michaelburke authored Sep 22, 2022
1 parent b0a56a1 commit 93cbbaa
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 25 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
shell: bash
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get update && sudo apt-get install -y capnproto libudev-dev
sudo apt-get update && sudo apt-get install -y capnproto libudev-dev libssl-dev
elif [ "$RUNNER_OS" == "macOS" ]; then
brew install capnp llvm
elif [ "$RUNNER_OS" == "Windows" ]; then
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:

- name: Install Dependencies.
run: |
sudo apt-get update && sudo apt-get install -y capnproto libudev-dev
sudo apt-get update && sudo apt-get install -y capnproto libudev-dev libssl-dev
- name: Cache pip
uses: actions/cache@v2
Expand Down Expand Up @@ -253,7 +253,9 @@ jobs:
ruby-dev \
rubygems \
build-essential \
libudev-dev
libudev-dev \
libssl-dev
sudo gem install public_suffix -v 4.0.7 # This is a fix for U18.
sudo gem install --no-document fpm
elif [ "$RUNNER_OS" == "macOS" ]; then
brew install capnp llvm create-dmg
Expand Down
38 changes: 18 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ exec --fail-on-error ${DIST_PYTHON} ./get-pip.py
script_runner = "@duckscript"
script = '''
wget -O imagemagick.tool.7.1.0.nupkg https://github.com/swift-nav/swift-toolchains/releases/download/imagemagick-7.1.0/imagemagick.tool.7.1.0.nupkg
exec --fail-on-error choco install -q -y vcredist2010 --version=10.0.40219.1
exec --fail-on-error choco install -q -y --side-by-side vcredist2010 --version=10.0.40219.32503
exec --fail-on-error choco install -q -y ./imagemagick.tool.7.1.0.nupkg
rm imagemagick.tool.7.1.0.nupkg
'''
Expand Down
2 changes: 1 addition & 1 deletion resources/LogPanel.qml
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ Item {
}

Timer {
interval: Globals.currentRefreshRate
interval: Utils.hzToMilliseconds(Globals.currentRefreshRate)
running: parent.visible
repeat: true
onTriggered: {
Expand Down

0 comments on commit 93cbbaa

Please sign in to comment.