CI: checkout first
Some checks are pending
Build eismuliplexer for linux / Build (push) Waiting to run

This commit is contained in:
Carl Philipp Klemm 2026-04-15 13:22:19 +02:00
parent b3185e4bc5
commit e8fce10c0d

View file

@ -6,6 +6,10 @@ jobs:
Build: Build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Check out repository code
uses: actions/checkout@v6
with:
submodules: 'true'
- name: Install dependancies - name: Install dependancies
run: | run: |
sudo add-apt-repository -y ppa:kisak/kisak-mesa sudo add-apt-repository -y ppa:kisak/kisak-mesa
@ -20,10 +24,6 @@ jobs:
with: with:
path: ./vulkan_sdk path: ./vulkan_sdk
version: ${{ env.VULKAN_SDK_VERSION }} version: ${{ env.VULKAN_SDK_VERSION }}
- name: Check out repository code
uses: actions/checkout@v6
with:
submodules: 'true'
- name: Install Appimagetool - name: Install Appimagetool
run: | run: |
wget -c https://github.com/$(wget -q https://github.com/probonopd/go-appimage/releases/expanded_assets/continuous -O - | grep "appimagetool-.*-x86_64.AppImage" | head -n 1 | cut -d '"' -f 2) wget -c https://github.com/$(wget -q https://github.com/probonopd/go-appimage/releases/expanded_assets/continuous -O - | grep "appimagetool-.*-x86_64.AppImage" | head -n 1 | cut -d '"' -f 2)