Skip to content

Commit 23e43d1

Browse files
authored
Fix builders
1 parent aa1b285 commit 23e43d1

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/cmake-cross-compile.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
steps:
1515
- name: Install dependencies
1616
run: |
17-
apt-get update
18-
apt-get install -y software-properties-common
19-
add-apt-repository ppa:ubuntu-toolchain-r/ppa
20-
apt-get install -y git gdc-13-aarch64-linux-gnu dub libz-dev elfutils
17+
sudo apt-get update
18+
sudo apt-get install -y software-properties-common
19+
sudo add-apt-repository ppa:ubuntu-toolchain-r/ppa
20+
sudo apt-get install -y git gdc-13-aarch64-linux-gnu dub libz-dev elfutils
2121
2222
- uses: actions/checkout@v3
2323
with:
@@ -45,10 +45,10 @@ jobs:
4545
steps:
4646
- name: Install dependencies
4747
run: |
48-
apt-get update
49-
apt-get install -y software-properties-common
50-
add-apt-repository ppa:ubuntu-toolchain-r/ppa
51-
apt-get install -y git gdc-13-arm-linux-gnueabihf dub libz-dev elfutils
48+
sudo apt-get update
49+
sudo apt-get install -y software-properties-common
50+
sudo add-apt-repository ppa:ubuntu-toolchain-r/ppa
51+
sudo apt-get install -y git gdc-13-arm-linux-gnueabihf dub libz-dev elfutils
5252
5353
- uses: actions/checkout@v3
5454
with:

.github/workflows/cmake.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ jobs:
4545
steps:
4646
- name: Install dependencies
4747
run: |
48-
apt-get update
49-
apt-get install -y software-properties-common
50-
add-apt-repository ppa:ubuntu-toolchain-r/ppa
51-
apt-get install -y git gdc-13-i686-linux-gnu dub libz-dev elfutils
48+
sudo apt-get update
49+
sudo apt-get install -y software-properties-common
50+
sudo add-apt-repository ppa:ubuntu-toolchain-r/ppa
51+
sudo apt-get install -y git gdc-13-i686-linux-gnu dub libz-dev elfutils
5252
5353
- uses: actions/checkout@v3
5454
with:

dub.sdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependency "slf4d" version="~>2"
1818

1919
configuration "libplist" {
2020
versions "LibPlist"
21-
dependency "plist-d" repository="git+https://github.com/Dadoum/libplist-d.git" version="7e5990ea64577bd786b4a2cfff2d3609f22cc8b2"
21+
dependency "plist-d" repository="git+https://github.com/Dadoum/libplist-d.git" version="6fdaa60d62bbf7c55044069e8f03cbe74401c444"
2222
}
2323

2424
subPackage {

dub.selections.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"handy-httpd": "5.2.1",
88
"httparsed": "1.2.1",
99
"plist": "~master",
10-
"plist-d": {"version":"7e5990ea64577bd786b4a2cfff2d3609f22cc8b2","repository":"git+https://github.com/Dadoum/libplist-d.git"},
10+
"plist-d": {"version":"6fdaa60d62bbf7c55044069e8f03cbe74401c444","repository":"git+https://github.com/Dadoum/libplist-d.git"},
1111
"requests": "2.1.2",
1212
"slf4d": "2.1.1",
1313
"test_allocator": "0.3.4",

0 commit comments

Comments
 (0)