mirror of
https://github.com/signalapp/Signal-Server
synced 2026-07-05 02:55:03 +01:00
48cdad7e57
Bumps the minor-actions-dependencies group with 2 updates: [actions/setup-java](https://github.com/actions/setup-java) and [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials). Updates `actions/setup-java` from 5.2.0 to 5.4.0 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/be666c2fcd27ec809703dec50e508c2fdc7f6654...1bcf9fb12cf4aa7d266a90ae39939e61372fe520) Updates `aws-actions/configure-aws-credentials` from 6.2.0 to 6.2.1 - [Release notes](https://github.com/aws-actions/configure-aws-credentials/releases) - [Changelog](https://github.com/aws-actions/configure-aws-credentials/blob/main/CHANGELOG.md) - [Commits](https://github.com/aws-actions/configure-aws-credentials/compare/e7f100cf4c008499ea8adda475de1042d6975c7b...254c19bd240aabef8777f48595e9d2d7b972184b) --- updated-dependencies: - dependency-name: actions/setup-java dependency-version: 5.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-actions-dependencies - dependency-name: aws-actions/configure-aws-credentials dependency-version: 6.2.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-actions-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
68 lines
2.8 KiB
YAML
68 lines
2.8 KiB
YAML
name: Service CI
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches-ignore:
|
|
- gh-pages
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container: ubuntu:24.04
|
|
timeout-minutes: 20
|
|
|
|
services:
|
|
foundationdb0:
|
|
# Note: this should generally match the version of the FoundationDB SERVER deployed in production; no need to
|
|
# bump it purely to match the CLIENT version
|
|
image: foundationdb/foundationdb:7.3.68
|
|
options: --name foundationdb0
|
|
foundationdb1:
|
|
# Note: this should generally match the version of the FoundationDB SERVER deployed in production; no need to
|
|
# bump it purely to match the CLIENT version
|
|
image: foundationdb/foundationdb:7.3.68
|
|
options: --name foundationdb1
|
|
|
|
steps:
|
|
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
|
- name: Set up JDK
|
|
uses: actions/setup-java@1bcf9fb12cf4aa7d266a90ae39939e61372fe520 # v5.4.0
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version-file: .java-version
|
|
cache: 'maven'
|
|
env:
|
|
# work around an issue with actions/runner setting an incorrect HOME in containers, which breaks maven caching
|
|
# https://github.com/actions/setup-java/issues/356
|
|
HOME: /root
|
|
- name: Install APT packages
|
|
# ca-certificates: required for AWS CRT client
|
|
run: |
|
|
# Add Docker's official GPG key:
|
|
apt update
|
|
apt install -y ca-certificates curl
|
|
install -m 0755 -d /etc/apt/keyrings
|
|
curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
|
|
chmod a+r /etc/apt/keyrings/docker.asc
|
|
|
|
# Add Docker repository to apt sources:
|
|
echo \
|
|
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
|
|
$(. /etc/os-release && echo "${UBUNTU_CODENAME:-$VERSION_CODENAME}") stable" | \
|
|
tee /etc/apt/sources.list.d/docker.list > /dev/null
|
|
|
|
# ca-certificates: required for AWS CRT client
|
|
apt update && apt install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin ca-certificates
|
|
- name: Configure FoundationDB0 database
|
|
run: docker exec foundationdb0 /usr/bin/fdbcli --exec 'configure new single memory'
|
|
- name: Configure FoundationDB1 database
|
|
run: docker exec foundationdb1 /usr/bin/fdbcli --exec 'configure new single memory'
|
|
- name: Download and install FoundationDB client
|
|
run: |
|
|
./mvnw -e -B -Pexclude-spam-filter clean prepare-package -DskipTests=true
|
|
cp service/target/jib-extra/usr/lib/libfdb_c.so /usr/lib/libfdb_c.x86_64.so
|
|
ldconfig
|
|
- name: Build with Maven
|
|
run: ./mvnw -e -B clean verify -DfoundationDb.serviceContainerNamePrefix=foundationdb
|