mirror of
https://github.com/signalapp/Signal-Server
synced 2026-08-21 22:47:25 +01:00
Bumps the minor-actions-dependencies group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [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/checkout` from 7.0.0 to 7.0.1 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0...3d3c42e5aac5ba805825da76410c181273ba90b1) Updates `actions/setup-java` from 5.4.0 to 5.6.0 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/1bcf9fb12cf4aa7d266a90ae39939e61372fe520...03ad4de0992f5dab5e18fcb136590ce7c4a0ac95) Updates `aws-actions/configure-aws-credentials` from 6.2.1 to 6.2.3 - [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/254c19bd240aabef8777f48595e9d2d7b972184b...e6de054238d6b7531b4efff3b6587d9aade6a06c) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-actions-dependencies - dependency-name: actions/setup-java dependency-version: 5.6.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.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-actions-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
47 lines
1.8 KiB
YAML
47 lines
1.8 KiB
YAML
name: Integration Tests
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '30 19 * * MON-FRI'
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
# This may seem a little redundant, but copying the configuration to an environment variable makes it easier and safer
|
|
# to then write its contents to a file
|
|
INTEGRATION_TEST_CONFIG: ${{ vars.INTEGRATION_TEST_CONFIG }}
|
|
|
|
jobs:
|
|
build:
|
|
if: ${{ vars.INTEGRATION_TEST_CONFIG != '' }}
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
issues: write
|
|
steps:
|
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
- uses: actions/setup-java@03ad4de0992f5dab5e18fcb136590ce7c4a0ac95 # v5.6.0
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version-file: .java-version
|
|
cache: 'maven'
|
|
- uses: aws-actions/configure-aws-credentials@e6de054238d6b7531b4efff3b6587d9aade6a06c # v6.2.3
|
|
name: Configure AWS credentials from Test account
|
|
with:
|
|
role-to-assume: ${{ vars.AWS_ROLE }}
|
|
aws-region: ${{ vars.AWS_REGION }}
|
|
- name: Write integration test configuration
|
|
run: |
|
|
mkdir -p integration-tests/src/main/resources
|
|
echo "${INTEGRATION_TEST_CONFIG}" > integration-tests/src/main/resources/config.yml
|
|
- name: Run and verify integration tests
|
|
run: ./mvnw clean compile test-compile failsafe:integration-test failsafe:verify -P aws-sso
|
|
- name: Open an issue on failure
|
|
if: ${{ failure() && github.event_name == 'schedule' }}
|
|
env:
|
|
GH_TOKEN: ${{ github.token }}
|
|
run: |
|
|
gh issue create \
|
|
--title "Failed server integration tests ($(date +'%Y-%m-%d'))" \
|
|
--body "Workflow **${{ github.workflow }}** failed. See the run: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
|