summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcyan <cyjan@mrcyjanek.net>2024-06-28 08:57:47 +0000
committercyan <cyjan@mrcyjanek.net>2024-06-28 08:59:57 +0000
commit8ea6f97f16166fb24ca18df02f3e9f34301d7490 (patch)
tree00af734154bdee63522bfb8836265ef8f09b0479
parent814c2437db2228dd2c9b1c4b807a95dbe49c9c15 (diff)
don't build inside of debian container
-rw-r--r--.github/workflows/xmruw.yaml6
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/xmruw.yaml b/.github/workflows/xmruw.yaml
index 5cf517d..2ab4e5b 100644
--- a/.github/workflows/xmruw.yaml
+++ b/.github/workflows/xmruw.yaml
@@ -4,13 +4,11 @@ on: [push]
jobs:
android:
runs-on: ubuntu-latest
- container:
- image: debian:bookworm
steps:
- name: Install dependencies
run: |
- apt update
- apt install -y build-essential pkg-config autoconf libtool ccache make cmake gcc g++ git curl lbzip2 libtinfo5 gperf unzip python-is-python3 jq
+ sudo apt update
+ sudo apt install -y build-essential pkg-config autoconf libtool ccache make cmake gcc g++ git curl lbzip2 libtinfo5 gperf unzip python-is-python3 jq
- uses: actions/checkout@v4
with:
fetch-depth: 0