mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-09 06:22:57 +00:00
## Problem `pg-clients` workflow looks different from the main `build-and-test` workflow for historical reasons (it was my very first task at Neon, and back then I wasn't really familiar with the rest of the CI pipelines). This PR unifies `pg-clients` workflow with `build-and-test` ## Summary of changes - Rename `pg_clients.yml` to `pg-clients.yml` - Run the workflow on changes in relevant files - Create Allure report for tests - Send slack notifications to `#on-call-qa-staging-stream` channel (instead of `#on-call-staging-stream`) - Update Client libraries once we're here
12 lines
260 B
Docker
12 lines
260 B
Docker
FROM swift:5.10 AS build
|
|
RUN apt-get -q update && apt-get -q install -y libssl-dev
|
|
WORKDIR /source
|
|
|
|
COPY . .
|
|
RUN swift build --configuration release
|
|
|
|
FROM swift:5.10
|
|
WORKDIR /app
|
|
COPY --from=build /source/.build/release .
|
|
CMD ["/app/PostgresClientKitExample"]
|