Skip to content

Commit 20ae851

Browse files
kocolosknickva
authored andcommitted
Update URL for FDB packages
1 parent a2e6505 commit 20ae851

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ jobs:
3535
rebar3-version: '3.17'
3636
- name: Install FoundationDB
3737
run: |
38-
wget https://www.foundationdb.org/downloads/${FDB_VERSION}/ubuntu/installers/foundationdb-clients_${FDB_VERSION}-1_amd64.deb
39-
wget https://www.foundationdb.org/downloads/${FDB_VERSION}/ubuntu/installers/foundationdb-server_${FDB_VERSION}-1_amd64.deb
38+
wget https://github.com/apple/foundationdb/releases/download/${FDB_VERSION}/foundationdb-clients_${FDB_VERSION}-1_amd64.deb
39+
wget https://github.com/apple/foundationdb/releases/download/${FDB_VERSION}/foundationdb-server_${FDB_VERSION}-1_amd64.deb
4040
sudo dpkg -i foundationdb-clients_${FDB_VERSION}-1_amd64.deb
4141
sudo dpkg -i foundationdb-server_${FDB_VERSION}-1_amd64.deb
4242
- name: Compile
@@ -90,21 +90,21 @@ jobs:
9090
- name: Install FoundationDB (Ubuntu)
9191
if: ${{ matrix.os == 'ubuntu-latest' }}
9292
run: |
93-
wget https://www.foundationdb.org/downloads/${FDB_VERSION}/ubuntu/installers/foundationdb-clients_${FDB_VERSION}-1_amd64.deb
94-
wget https://www.foundationdb.org/downloads/${FDB_VERSION}/ubuntu/installers/foundationdb-server_${FDB_VERSION}-1_amd64.deb
93+
wget https://github.com/apple/foundationdb/releases/download/${FDB_VERSION}/foundationdb-clients_${FDB_VERSION}-1_amd64.deb
94+
wget https://github.com/apple/foundationdb/releases/download/${FDB_VERSION}/foundationdb-server_${FDB_VERSION}-1_amd64.deb
9595
sudo dpkg -i foundationdb-clients_${FDB_VERSION}-1_amd64.deb
9696
sudo dpkg -i foundationdb-server_${FDB_VERSION}-1_amd64.deb
9797
- name: Install FoundationDB (Windows)
9898
if: ${{ matrix.os == 'windows-latest' }}
9999
run: |
100100
Set-PSDebug -Trace 1
101-
Invoke-WebRequest -Uri https://www.foundationdb.org/downloads/$env:FDB_VERSION/windows/installers/foundationdb-$env:FDB_VERSION-x64.msi -OutFile foundationdb-$env:FDB_VERSION-x64.msi
101+
Invoke-WebRequest -Uri https://github.com/apple/foundationdb/releases/download/$env:FDB_VERSION/foundationdb-$env:FDB_VERSION-x64.msi -OutFile foundationdb-$env:FDB_VERSION-x64.msi
102102
msiexec /i foundationdb-$env:FDB_VERSION-x64.msi /passive
103103
echo "c:/Program Files/foundationdb/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
104104
- name: Install FoundationDB (macOS)
105105
if: ${{ matrix.os == 'macos-latest' }}
106106
run: |
107-
wget https://www.foundationdb.org/downloads/${FDB_VERSION}/macOS/installers/FoundationDB-${FDB_VERSION}.pkg
107+
wget https://github.com/apple/foundationdb/releases/download/${FDB_VERSION}/FoundationDB-${FDB_VERSION}.pkg
108108
sudo installer -allowUntrusted -verboseR -pkg FoundationDB-${FDB_VERSION}.pkg -target /
109109
- name: Compile
110110
run: rebar3 compile

0 commit comments

Comments
 (0)