From 23e43d166725d6347c8ceb2d08a6e98077961551 Mon Sep 17 00:00:00 2001 From: Dadoum <24679280+Dadoum@users.noreply.github.com> Date: Sun, 22 Dec 2024 10:03:44 +0100 Subject: [PATCH] Fix builders --- .github/workflows/cmake-cross-compile.yml | 16 ++++++++-------- .github/workflows/cmake.yml | 8 ++++---- dub.sdl | 2 +- dub.selections.json | 2 +- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/cmake-cross-compile.yml b/.github/workflows/cmake-cross-compile.yml index 469b0c6..8723c4e 100644 --- a/.github/workflows/cmake-cross-compile.yml +++ b/.github/workflows/cmake-cross-compile.yml @@ -14,10 +14,10 @@ jobs: steps: - name: Install dependencies run: | - apt-get update - apt-get install -y software-properties-common - add-apt-repository ppa:ubuntu-toolchain-r/ppa - apt-get install -y git gdc-13-aarch64-linux-gnu dub libz-dev elfutils + sudo apt-get update + sudo apt-get install -y software-properties-common + sudo add-apt-repository ppa:ubuntu-toolchain-r/ppa + sudo apt-get install -y git gdc-13-aarch64-linux-gnu dub libz-dev elfutils - uses: actions/checkout@v3 with: @@ -45,10 +45,10 @@ jobs: steps: - name: Install dependencies run: | - apt-get update - apt-get install -y software-properties-common - add-apt-repository ppa:ubuntu-toolchain-r/ppa - apt-get install -y git gdc-13-arm-linux-gnueabihf dub libz-dev elfutils + sudo apt-get update + sudo apt-get install -y software-properties-common + sudo add-apt-repository ppa:ubuntu-toolchain-r/ppa + sudo apt-get install -y git gdc-13-arm-linux-gnueabihf dub libz-dev elfutils - uses: actions/checkout@v3 with: diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 83dd1a3..76ff9b8 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -45,10 +45,10 @@ jobs: steps: - name: Install dependencies run: | - apt-get update - apt-get install -y software-properties-common - add-apt-repository ppa:ubuntu-toolchain-r/ppa - apt-get install -y git gdc-13-i686-linux-gnu dub libz-dev elfutils + sudo apt-get update + sudo apt-get install -y software-properties-common + sudo add-apt-repository ppa:ubuntu-toolchain-r/ppa + sudo apt-get install -y git gdc-13-i686-linux-gnu dub libz-dev elfutils - uses: actions/checkout@v3 with: diff --git a/dub.sdl b/dub.sdl index 9ae924b..589483c 100644 --- a/dub.sdl +++ b/dub.sdl @@ -18,7 +18,7 @@ dependency "slf4d" version="~>2" configuration "libplist" { versions "LibPlist" - dependency "plist-d" repository="git+https://github.com/Dadoum/libplist-d.git" version="7e5990ea64577bd786b4a2cfff2d3609f22cc8b2" + dependency "plist-d" repository="git+https://github.com/Dadoum/libplist-d.git" version="6fdaa60d62bbf7c55044069e8f03cbe74401c444" } subPackage { diff --git a/dub.selections.json b/dub.selections.json index b53fd4b..a24bb29 100644 --- a/dub.selections.json +++ b/dub.selections.json @@ -7,7 +7,7 @@ "handy-httpd": "5.2.1", "httparsed": "1.2.1", "plist": "~master", - "plist-d": {"version":"7e5990ea64577bd786b4a2cfff2d3609f22cc8b2","repository":"git+https://github.com/Dadoum/libplist-d.git"}, + "plist-d": {"version":"6fdaa60d62bbf7c55044069e8f03cbe74401c444","repository":"git+https://github.com/Dadoum/libplist-d.git"}, "requests": "2.1.2", "slf4d": "2.1.1", "test_allocator": "0.3.4",