Skip to content

Commit

Permalink
Build - update vcpkg versions and CI dep versions
Browse files Browse the repository at this point in the history
  • Loading branch information
samaaron committed Jan 14, 2025
1 parent 92e2c76 commit 809e761
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
- uses: ruby/setup-ruby@v1
id: ruby-inst
with:
ruby-version: 3.2
ruby-version: 3.3
if: matrix.os == 'windows-latest'

# Install gems Windows
Expand Down Expand Up @@ -128,22 +128,22 @@ jobs:
uses: jurplel/install-qt-action@v4
with:
modules: "qtpositioning qtwebchannel qtwebengine qtwebsockets"
version: "6.7.0"
version: "6.8.1"

# Install Elixir on Ubuntu
- name: Linux Elixir
uses: erlef/setup-beam@v1
with:
otp-version: "27"
elixir-version: "1.17"
elixir-version: "1.18"
if: matrix.os == 'ubuntu-latest'

# Install Elixir on Windows
- name: Win Elixir
uses: erlef/setup-beam@v1
with:
otp-version: "27"
elixir-version: "1.17"
elixir-version: "1.18"
if: matrix.os == 'windows-latest'

# Install Elixir on MacOS
Expand Down
3 changes: 2 additions & 1 deletion app/linux-pre-vcpkg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ cd "${SCRIPT_DIR}"
# Build vcpkg
if [ ! -d "vcpkg" ]; then
echo "Cloning vcpkg"
git clone --depth 1 --branch "${VCPKG_BRANCH:-2024.12.16}" https://github.com/microsoft/vcpkg.git vcpkg
git clone --depth 1 https://github.com/microsoft/vcpkg.git vcpkg
# git clone --depth 1 --branch "${VCPKG_BRANCH:-2024.12.16}" https://github.com/microsoft/vcpkg.git vcpkg
fi

export VCPKG_ROOT="$SCRIPT_DIR/vcpkg"
Expand Down
2 changes: 1 addition & 1 deletion app/mac-pre-vcpkg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ cd "${SCRIPT_DIR}"
# Build vcpkg
if [ ! -d "vcpkg" ]; then
echo "Cloning vcpkg"
git clone --depth 1 --branch 2024.03.25 https://github.com/microsoft/vcpkg.git vcpkg
git clone --depth 1 --branch 2024.12.16 https://github.com/microsoft/vcpkg.git vcpkg
fi

export VCPKG_ROOT="$SCRIPT_DIR/vcpkg"
Expand Down
2 changes: 1 addition & 1 deletion app/win-pre-vcpkg.bat
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cd %~dp0
REM Build vcpkg
if not exist "vcpkg\" (
echo Cloning vcpkg
git clone --depth 1 --branch 2024.03.25 https://github.com/microsoft/vcpkg.git vcpkg
git clone --depth 1 --branch 2024.12.16 https://github.com/microsoft/vcpkg.git vcpkg
)

set VCPKG_ROOT=%~dp0/vcpkg
Expand Down

0 comments on commit 809e761

Please sign in to comment.