trying fixing config #1
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: Release on GitHub | |
on: | |
push: | |
tags: | |
- "v*" | |
env: | |
evomaster-version: 1.6.2 | |
jdk: 17 | |
retention-days: 1 | |
jobs: | |
build-base: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup JDK ${{env.jdk}} | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{env.jdk}} | |
- name: Cache Maven packages | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: Build with Maven | |
run: mvn clean verify -DskipTests | |
env: | |
CI_env: GithubAction | |
- name: Upload evomaster.jar | |
uses: actions/upload-artifact@v2 | |
with: | |
name: evomaster.jar | |
path: core/target/evomaster.jar | |
retention-days: ${{env.retention-days}} | |
if-no-files-found: error | |
installer-for-windows: | |
needs: build-base | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup JDK ${{env.jdk}} | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{env.jdk}} | |
- name: Download fat jar | |
uses: actions/download-artifact@v2 | |
with: | |
name: evomaster.jar | |
path: core/target | |
- name: Build installation file | |
shell: bash | |
run: bash makeExecutable.sh WINDOWS | |
- name: Upload installation file | |
uses: actions/upload-artifact@v2 | |
with: | |
name: evomaster.msi | |
path: release/evomaster-${{env.evomaster-version}}.msi | |
retention-days: ${{env.retention-days}} | |
if-no-files-found: error | |
installer-for-osx: | |
needs: build-base | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup JDK ${{env.jdk}} | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{env.jdk}} | |
- name: Download fat jar | |
uses: actions/download-artifact@v2 | |
with: | |
name: evomaster.jar | |
path: core/target | |
- name: Build installation file | |
shell: bash | |
run: bash makeExecutable.sh OSX | |
- name: Upload installation file | |
uses: actions/upload-artifact@v2 | |
with: | |
name: evomaster.dmg | |
path: release/evomaster-${{env.evomaster-version}}.dmg | |
retention-days: ${{env.retention-days}} | |
if-no-files-found: error | |
installer-for-debian: | |
needs: build-base | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup JDK ${{env.jdk}} | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{env.jdk}} | |
- name: Download fat jar | |
uses: actions/download-artifact@v2 | |
with: | |
name: evomaster.jar | |
path: core/target | |
- name: Build installation file | |
shell: bash | |
run: bash makeExecutable.sh DEBIAN | |
- name: Upload installation file | |
uses: actions/upload-artifact@v2 | |
with: | |
name: evomaster.deb | |
path: release/evomaster_${{env.evomaster-version}}-1_amd64.deb | |
retention-days: ${{env.retention-days}} | |
if-no-files-found: error | |
tagged-release: | |
needs: [installer-for-debian,installer-for-windows,installer-for-osx] | |
name: "Tagged Release" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Download fat jar | |
uses: actions/download-artifact@v2 | |
with: | |
name: evomaster.jar | |
- name: Download | |
uses: actions/download-artifact@v2 | |
with: | |
name: evomaster.deb | |
- name: Download | |
uses: actions/download-artifact@v2 | |
with: | |
name: evomaster.dmg | |
- name: Download | |
uses: actions/download-artifact@v2 | |
with: | |
name: evomaster.msi | |
- uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
prerelease: false | |
files: | | |
evomaster.jar | |
evomaster.deb | |
evomaster.dmg | |
evomaster.msi | |