Skip to content

Commit

Permalink
Merge branch 'master' into server-ansible-cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ibodrov authored Oct 15, 2023
2 parents 15fafa4 + 147b0c3 commit efb1085
Show file tree
Hide file tree
Showing 612 changed files with 25,411 additions and 4,522 deletions.
135 changes: 0 additions & 135 deletions .github/workflows/build-jdk17-images.yml

This file was deleted.

19 changes: 17 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,33 @@ jobs:
build:
strategy:
matrix:
jdk_version: ['8', '11', '17']
jdk_version: ['17']
fail-fast: false

runs-on: self-hosted

steps:
- name: Clear /tmp
run: |
docker run --rm -v /tmp:/data alpine find /data -ctime +2 -exec rm -rf '{}' \; 2>&1 > /dev/null || true
- name: Clear old Docker resources
run: |
docker rm -f $(docker ps -aq) || true
docker volume rm $(docker volume ps -q) || true
docker system prune -af || true
docker image prune -af || true
docker volume prune -f || true
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
driver: docker

- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.OSS_DOCKERHUB_USERNAME }}
password: ${{ secrets.OSS_DOCKERHUB_PASSWORD }}

- uses: actions/checkout@v3

Expand Down
Loading

0 comments on commit efb1085

Please sign in to comment.