Make version of oauth2 proxy configurable via operator param (#245) #145
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: TheiaCloud Service CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main, osweek23 ] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- name: Build TheiaCloud common | |
run: | | |
mvn clean install -f java/common/maven-conf --no-transfer-progress | |
mvn clean install -f java/common/org.eclipse.theia.cloud.common --no-transfer-progress | |
- name: Run TheiaCloud service tests | |
run: mvn clean verify -fae -f java/service/org.eclipse.theia.cloud.service --no-transfer-progress | |
docker: | |
needs: tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build the Docker image | |
run: docker build -t theia-cloud-service:$(date +%s) -f dockerfiles/service/Dockerfile . |