Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated dependecies #66

Closed
wants to merge 36 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
1c11bd5
Updatted dependecies
synacker Sep 8, 2024
ea6e000
Fixed github acrions
synacker Sep 8, 2024
022e691
Some fixes for build
synacker Sep 8, 2024
61178c1
Fixed linux build
synacker Sep 8, 2024
b84e61d
Added packages for linux. Temprary disabled other platforms
synacker Sep 8, 2024
78ea3af
Added packages for linux
synacker Sep 8, 2024
43e8a4c
Added packages
synacker Sep 8, 2024
3c8526c
Added package
synacker Sep 8, 2024
f4e9fe1
Return windows build
synacker Sep 8, 2024
c04a5bb
Returned macos
synacker Sep 8, 2024
b65d05f
Fixed macois and win actions
synacker Sep 8, 2024
64df53c
Updated C++ standard
synacker Sep 8, 2024
26d16b2
Moved install apt packages to separate step without extensions
synacker Sep 9, 2024
7965db2
Return deb actions
synacker Sep 9, 2024
c4614df
Fixed standard for win
synacker Sep 9, 2024
a5caa1f
Tried to fix install deb packages
synacker Sep 9, 2024
0a59abc
Added sudo for install deb packages
synacker Sep 9, 2024
ec89fe2
Fix
synacker Sep 9, 2024
2138d02
Fix
synacker Sep 9, 2024
bbfe7d2
Fix
synacker Sep 9, 2024
3c1c650
Fix
synacker Sep 9, 2024
45dde3f
Fix
synacker Sep 9, 2024
5ede25c
Fix
synacker Sep 9, 2024
a39f461
Fix
synacker Sep 9, 2024
e34693c
Fix
synacker Sep 9, 2024
8088f88
Fix
synacker Sep 9, 2024
ef6e6f3
Fix
synacker Sep 9, 2024
d454de0
Fix
synacker Sep 9, 2024
db181ae
Fix
synacker Sep 9, 2024
4eb87fb
Fix
synacker Sep 9, 2024
d703dbd
Fix
synacker Sep 11, 2024
e951b70
Fix
synacker Sep 11, 2024
8e6aa96
Fix
synacker Sep 11, 2024
326856e
Fix
synacker Sep 11, 2024
36e32a6
Fix
synacker Sep 11, 2024
14498c4
Fix
synacker Sep 15, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Return deb actions
  • Loading branch information
synacker committed Sep 9, 2024
commit 7965db26bd7b7a72b857b5ab0a07fb74cda12642
101 changes: 52 additions & 49 deletions .github/workflows/daggy-github-actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,55 +33,58 @@ jobs:
- name: Conan config
run: conan config install CI/conan

- name: install system deps
run: sudo apt-get install -y libgl-dev \
libgl1-mesa-dev \
libx11-dev \
libx11-xcb-dev \
libfontenc-dev \
libice-dev \
libsm-dev \
libxau-dev \
libxaw7-dev \
libx11-xcb-dev \
libfontenc-dev \
libxcomposite-dev \
libxcursor-dev \
libxdamage-dev \
libxfixes-dev \
libxi-dev \
libxinerama-dev \
libxmu-dev \
libxmuu-dev \
libxpm-dev \
libxrandr-dev \
libxres-dev \
libxss-dev \
libxtst-dev \
ibxv-dev \
libxxf86vm-dev \
libxcb-glx0-dev \
libxcb-render-util0-dev \
libxcb-xkb-dev \
libxcb-icccm4-dev \
libxcb-image0-dev \
libxcb-keysyms1-dev \
libxcb-randr0-dev \
libxcb-shape0-dev \
libxcb-sync-dev \
libxcb-xfixes0-dev \
libxcb-xinerama0-dev \
libxcb-dri3-dev \
libxcb-cursor-dev \
libxcb-dri2-0-dev \
libxcb-dri3-dev \
libxcb-present-dev \
libxcb-composite0-dev \
libxcb-ewmh-dev \
libxcb-res0-dev \
libxv-dev \
libxcb-util-dev \
libxcb-util0-dev
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: libgl-dev \
libgl1-mesa-dev \
libx11-dev \
libx11-xcb-dev \
libfontenc-dev \
libice-dev \
libsm-dev \
libxau-dev \
libxaw7-dev \
libx11-xcb-dev \
libfontenc-dev \
libxcomposite-dev \
libxcursor-dev \
libxdamage-dev \
libxfixes-dev \
libxi-dev \
libxinerama-dev \
libxmu-dev \
libxmuu-dev \
libxpm-dev \
libxrandr-dev \
libxres-dev \
libxss-dev \
libxtst-dev \
ibxv-dev \
libxxf86vm-dev \
libxcb-glx0-dev \
libxcb-render-util0-dev \
libxcb-xkb-dev \
libxcb-icccm4-dev \
libxcb-image0-dev \
libxcb-keysyms1-dev \
libxcb-randr0-dev \
libxcb-shape0-dev \
libxcb-sync-dev \
libxcb-xfixes0-dev \
libxcb-xinerama0-dev \
libxcb-dri3-dev \
libxcb-cursor-dev \
libxcb-dri2-0-dev \
libxcb-dri3-dev \
libxcb-present-dev \
libxcb-composite0-dev \
libxcb-ewmh-dev \
libxcb-res0-dev \
libxv-dev \
libxcb-util-dev \
libxcb-util0-dev
version: syspackages


- name: Conan install
run: conan install . --build=missing --profile:build=linux-gcc12_x64 --profile:host=linux-gcc12_x64 --output-folder=.
Expand Down
Loading