Skip to content

Commit

Permalink
Trying to fix yaml file
Browse files Browse the repository at this point in the history
  • Loading branch information
vpicaver committed Oct 18, 2023
1 parent 05e06ed commit 72f0e5a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/linux_build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ jobs:
- name: Install Qt
run: |
sudo apt-get update
if [ "${{ matrix.qt_version }}" = "5" ]; then
sudo apt-get install -y qtbase5-dev qttools5-dev qttools5-dev-tools qtdeclarative5-dev qml-module-qtquick2 qml-module-qtquick-controls2 qtquickcontrols2-5-dev libqt5concurrent5 libqt5test5
elif [ "${{ matrix.qt_version }}" = "6" ]; then
# sudo add-apt-repository -y ppa:beineri/opt-qt-6.2.0-`lsb_release -c -s`
# sudo apt-get update
# sudo apt-get install -y qt62base qt62declarative qt62tools
fi
if [ "${{ matrix.qt_version }}" = "5" ]; then
sudo apt-get install -y qtbase5-dev qttools5-dev qttools5-dev-tools qtdeclarative5-dev qml-module-qtquick2 qml-module-qtquick-controls2 qtquickcontrols2-5-dev libqt5concurrent5 libqt5test5
elif [ "${{ matrix.qt_version }}" = "6" ]; then
sudo add-apt-repository -y ppa:beineri/opt-qt-6.2.0-$(lsb_release -c -s)
sudo apt-get update
sudo apt-get install -y qt62base qt62declarative qt62tools
fi
- name: Create Build Environment
run: cmake -S . -B build -G Ninja -DENABLE_TESTING:BOOL=ON -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="-fsanitize=address"
Expand Down

0 comments on commit 72f0e5a

Please sign in to comment.