Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 0 additions & 46 deletions .github/workflows/release-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,49 +151,3 @@ jobs:
arguments: --no-parallel --no-daemon publishDist -Prc=1 -PlocalReleasePlugins -PasfTestNexusUsername=test -PasfTestNexusPassword=test -PasfTestGitSourceUsername=test -PasfTestGitSourcePassword=test -PasfTestSvnUsername=test -PasfTestSvnPassword=test
env:
ORG_GRADLE_PROJECT_checksumIgnore: true

release-autostyle:
strategy:
fail-fast: false
matrix:
gradle-version: [wrapper]
name: 'Autostyle ${{ matrix.gradle-version }}'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 50
submodules: true
- name: 'Set up JDK 8'
uses: actions/setup-java@v5
with:
java-version: 21
distribution: 'zulu'
- name: 'Start release environment'
run: |
gpg --import .github/workflows/test-key.asc
git clone --depth 100 https://github.com/vlsi/asflike-release-environment.git ../asflike-release-environment
cd ../asflike-release-environment
cp .env_autostyle .env
docker compose build vcs
docker compose up -d
- name: 'Clone Autostyle'
run: |
git clone --depth 100 https://github.com/autostyle/autostyle.git ../autostyle
git rev-parse HEAD
- name: 'Prepare Candidate'
uses: eskatos/gradle-command-action@v3
with:
gradle-version: ${{ matrix.gradle-version }}
build-root-directory: ../autostyle
arguments: --no-parallel --no-daemon prepareVote -Prc=1 -PlocalReleasePlugins -PghTestNexusUsername=test -PghTestNexusPassword=test -PghTestGitSourceUsername=test -PghTestGitSourcePassword=test -Psigning.gnupg.keyName=289023DE2663BD17 -PuseGpgCmd -Psigning.gnupg.useLegacyGpg=true
env:
ORG_GRADLE_PROJECT_checksumIgnore: true
- name: 'Publish Release'
uses: eskatos/gradle-command-action@v3
with:
gradle-version: ${{ matrix.gradle-version }}
build-root-directory: ../autostyle
arguments: --no-parallel --no-daemon publishDist -Prc=1 -PlocalReleasePlugins -PghTestNexusUsername=test -PghTestNexusPassword=test -PghTestGitSourceUsername=test -PghTestGitSourcePassword=test
env:
ORG_GRADLE_PROJECT_checksumIgnore: true
Loading