Skip to content

Commit

Permalink
Give up on ubuntu-latest workflow
Browse files Browse the repository at this point in the history
Qt keeps failing
  • Loading branch information
LegalizeAdulthood committed Oct 9, 2024
1 parent 3b5fa52 commit 97ceb6a
Showing 1 changed file with 45 additions and 43 deletions.
88 changes: 45 additions & 43 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
# Can't seem to get the right secret sauce to build Qt on ubuntu-latest under github actions
# os: [ ubuntu-latest, windows-latest ]
os: [ windows-latest ]
runs-on: ${{matrix.os}}
env:
VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite"
Expand All @@ -27,48 +29,48 @@ jobs:
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || '');
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || '');
- name: Install Qt
if: matrix.os == 'ubuntu-latest'
uses: jurplel/install-qt-action@v4

- name: Install Prerequisites
if: matrix.os == 'ubuntu-latest'
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: >
autoconf
automake
autoconf-archive
build-essential
libegl1-mesa-dev
libgl1-mesa-dev
libglu1-mesa-dev
libgstreamer-gl1.0-0
libpulse-dev
libx11-xcb-dev
libxcb-cursor0
libxcb-glx0
libxcb-icccm4
libxcb-image0
libxcb-keysyms1
libxcb-randr0
libxcb-render-util0
libxcb-render0
libxcb-shape0
libxcb-shm0
libxcb-sync1
libxcb-util1
libxcb-xfixes0
libxcb-xinerama0
libxcb-xkb-dev
libxcb1
libxi-dev
libxkbcommon-dev
libxkbcommon-x11-0
libxkbcommon-x11-dev
libxrender-dev
libtool
pkg-config
#- name: Install Qt
# if: matrix.os == 'ubuntu-latest'
# uses: jurplel/install-qt-action@v4
#
#- name: Install Prerequisites
# if: matrix.os == 'ubuntu-latest'
# uses: awalsh128/cache-apt-pkgs-action@latest
# with:
# packages: >
# autoconf
# automake
# autoconf-archive
# build-essential
# libegl1-mesa-dev
# libgl1-mesa-dev
# libglu1-mesa-dev
# libgstreamer-gl1.0-0
# libpulse-dev
# libx11-xcb-dev
# libxcb-cursor0
# libxcb-glx0
# libxcb-icccm4
# libxcb-image0
# libxcb-keysyms1
# libxcb-randr0
# libxcb-render-util0
# libxcb-render0
# libxcb-shape0
# libxcb-shm0
# libxcb-sync1
# libxcb-util1
# libxcb-xfixes0
# libxcb-xinerama0
# libxcb-xkb-dev
# libxcb1
# libxi-dev
# libxkbcommon-dev
# libxkbcommon-x11-0
# libxkbcommon-x11-dev
# libxrender-dev
# libtool
# pkg-config

- name: Run Workflow
run: cmake --workflow --preset default

0 comments on commit 97ceb6a

Please sign in to comment.