Fix docker compose command execution #520
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Zulip Java Client CI | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**.adoc' | |
- 'LICENSE.txt' | |
pull_request: | |
branches: | |
- '*' | |
paths-ignore: | |
- '**.adoc' | |
- 'LICENSE.txt' | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
java: [ '11', '17', '21' ] | |
steps: | |
- name: Checkout Zulip Java Client | |
uses: actions/checkout@v4 | |
- name: Restore cache | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: ${{ matrix.java }} | |
- name: Setup Zulip | |
run: | | |
cd src/test/resources/docker/ | |
docker-compose up -d | |
while [ "$(curl -k -L -s -o /dev/null -w "%{http_code}" http://localhost/login)" != "200" ] | |
do | |
sleep 5 | |
done | |
./populatedb.sh | |
cd - | |
while [ "$(curl -k -L -s -o /dev/null -w "%{http_code}" http://localhost/login)" != "200" ] | |
do | |
sleep 5 | |
done | |
echo "key=lDxDG5uoqwOhCdeA2d9iHvboTYAcOlVb" > zuliprc | |
echo "[email protected]" >> zuliprc | |
echo "site=https://localhost" >> zuliprc | |
echo "insecure=true" >> zuliprc | |
- name: Build JDK ${{ matrix.java }} | |
run: | | |
./mvnw clean verify -ntp -B |