Skip to content

Commit

Permalink
Fix builders
Browse files Browse the repository at this point in the history
  • Loading branch information
Dadoum authored Dec 22, 2024
1 parent aa1b285 commit 23e43d1
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/cmake-cross-compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion dub.sdl
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion dub.selections.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 23e43d1

Please sign in to comment.