From 70015c0023c54dc30e3a59872a70eb7724118ce1 Mon Sep 17 00:00:00 2001 From: R1kaB3rN <100738684+R1kaB3rN@users.noreply.github.com> Date: Fri, 30 Aug 2024 18:38:54 -0700 Subject: [PATCH] workflows: build inside sniper container --- .github/workflows/make.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/make.yml b/.github/workflows/make.yml index a055989c..6bf7d586 100644 --- a/.github/workflows/make.yml +++ b/.github/workflows/make.yml @@ -21,10 +21,14 @@ jobs: python-version: "3.9" - name: Install dependencies run: | - sudo apt-get install make + sudo apt-get install podman - name: Initialize submodules run: | git submodule update --init --recursive + - name: Initialize steamrt container + run: | + podman pull registry.gitlab.steamos.cloud/steamrt/sniper/sdk:beta + podman run -it registry.gitlab.steamos.cloud/steamrt/sniper/sdk:beta /bin/sh - name: Make module run: | make install