Skip to content

Commit

Permalink
[temp][debugging] Tell ci to build in debug mode
Browse files Browse the repository at this point in the history
  • Loading branch information
syl committed Oct 14, 2022
1 parent b0e8314 commit d13d14f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/atomicdex-desktop-ci.yml
Expand Up @@ -37,17 +37,17 @@ jobs:
- name: ubuntu-qt-5-15-2
os: ubuntu-18.04
qt: '5.15.2'
type: 'release'
type: 'debug'

- name: osx-qt-5-15-2
os: macos-latest
qt: '5.15.2'
type: 'release'
type: 'debug'

- name: windows-10-qt-5-15-2
os: windows-latest
qt: '5.15.2'
type: 'release'
type: 'debug'

#- name: osx-qt-5-15-2-dbg
# os: macos-latest
Expand Down Expand Up @@ -198,8 +198,8 @@ jobs:
cd ci_tools_atomic_dex
nimble build -y
./ci_tools_atomic_dex build release
./ci_tools_atomic_dex bundle release
./ci_tools_atomic_dex build debug
./ci_tools_atomic_dex bundle debug
- name: import code signing certificates (macos)
if: runner.os == 'macOS'
Expand Down
2 changes: 1 addition & 1 deletion ci_tools_atomic_dex/ci_scripts/windows_script.ps1
Expand Up @@ -19,5 +19,5 @@ $Env:QT_ROOT = "C:\Qt"
mkdir b
cd b
cmake --version
cmake -DCMAKE_BUILD_TYPE=Release -GNinja ../
cmake -DCMAKE_BUILD_TYPE=Debug -GNinja ../
ninja install

0 comments on commit d13d14f

Please sign in to comment.