-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into dns-action
- Loading branch information
Showing
42 changed files
with
276 additions
and
89 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,170 @@ | ||
name: Release on GitHub | ||
|
||
|
||
## Run only when we push a tag. See "docs/release.md" instructions | ||
on: | ||
push: | ||
tags: | ||
- "v*" | ||
|
||
env: | ||
evomaster-version: 2.0.1 | ||
jdk: 17 | ||
retention-days: 1 | ||
## Doesn't work, ie, use env in env | ||
# installer-windows: evomaster-${evomaster-version}.msi | ||
# installer-osx: evomaster-${evomaster-version}.dmg | ||
# installer-debian: evomaster_${evomaster-version}-1_amd64.deb | ||
|
||
jobs: | ||
|
||
build-base: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup JDK ${{env.jdk}} | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: ${{env.jdk}} | ||
- name: Cache Maven packages | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.m2 | ||
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | ||
restore-keys: ${{ runner.os }}-m2 | ||
- name: Build with Maven | ||
# Don't run any test, as build should had already been verified (and it takes hours...) | ||
run: mvn clean verify -DskipTests | ||
env: | ||
CI_env: GithubAction | ||
- name: Upload evomaster.jar | ||
uses: actions/upload-artifact@v3 | ||
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@v4 | ||
- name: Setup JDK ${{env.jdk}} | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: ${{env.jdk}} | ||
- name: Download fat jar | ||
uses: actions/download-artifact@v3 | ||
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@v3 | ||
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@v4 | ||
- name: Setup JDK ${{env.jdk}} | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: ${{env.jdk}} | ||
- name: Download fat jar | ||
uses: actions/download-artifact@v3 | ||
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@v3 | ||
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@v4 | ||
- name: Setup JDK ${{env.jdk}} | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: ${{env.jdk}} | ||
- name: Download fat jar | ||
uses: actions/download-artifact@v3 | ||
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@v3 | ||
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@v3 | ||
with: | ||
name: evomaster.jar | ||
- name: Download | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: evomaster.deb | ||
- name: Download | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: evomaster.dmg | ||
- name: Download | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: evomaster.msi | ||
|
||
|
||
## Doesn't seem any longer mantained... plus usability issues | ||
# - uses: "marvinpinto/action-automatic-releases@latest" | ||
# with: | ||
# repo_token: "${{ secrets.GITHUB_TOKEN }}" | ||
# prerelease: false | ||
# files: | | ||
# evomaster.jar | ||
# ${{env.installer-windows}} | ||
# ${{env.installer-osx}} | ||
# ${{env.installer-debian}} | ||
|
||
- name: Release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
prerelease: false | ||
draft: false | ||
fail_on_unmatched_files: true | ||
files: | | ||
evomaster.jar | ||
evomaster-${{env.evomaster-version}}.msi | ||
evomaster-${{env.evomaster-version}}.dmg | ||
evomaster_${{env.evomaster-version}}-1_amd64.deb | ||
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
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
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
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
Oops, something went wrong.