Skip to content

Commit

Permalink
fix: CI install
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-zippenfenig committed Sep 26, 2024
1 parent ff02544 commit d0dc03a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,11 @@ jobs:
${{ matrix.cache-version }}-${{ runner.os }}-${{ steps.get-swift-version.outputs.version }}-${{ env.cache_version }}-spm-deps-
- name: Install clickhouse
run: |
curl https://clickhouse.com/ | sh
./clickhouse server
apt-get update; DEBIAN_FRONTEND=noninteractive apt-get install -qq -y apt-transport-https ca-certificates curl gnupg
curl -fsSL 'https://packages.clickhouse.com/rpm/lts/repodata/repomd.xml.key' | sudo gpg --dearmor -o /usr/share/keyrings/clickhouse-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/clickhouse-keyring.gpg] https://packages.clickhouse.com/deb stable main" | sudo tee /etc/apt/sources.list.d/clickhouse.list
apt-get update; DEBIAN_FRONTEND=noninteractive apt-get install -qq -y clickhouse-server
service clickhouse-server start
- name: Resolve dependencies
if: steps.cache-resolved-dependencies.outputs.cache-hit != 'true'
run: ${{ env.swift_package_resolve }}
Expand Down

0 comments on commit d0dc03a

Please sign in to comment.