Skip to content

Commit

Permalink
Merge pull request #272 from stoffu/aeon-upload-release
Browse files Browse the repository at this point in the history
build: automatically upload binaries to Release
  • Loading branch information
aeonix authored May 24, 2022
2 parents 4d30796 + b248bd1 commit e946717
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ jobs:
- name: SHA256 checksum
run: openssl sha256 ${{ env.ARTIFACT_NAME }}.tar.bz2
working-directory: build/release
- uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: build/release/${{ env.ARTIFACT_NAME }}.tar.bz2
- uses: actions/upload-artifact@v2
with:
name: ${{ env.ARTIFACT_NAME }}.tar.bz2
Expand Down Expand Up @@ -61,6 +65,10 @@ jobs:
- name: SHA256 checksum
run: openssl sha256 ${{ env.ARTIFACT_NAME }}.zip
working-directory: build/release
- uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: build/release/${{ env.ARTIFACT_NAME }}.zip
- uses: actions/upload-artifact@v2
with:
name: ${{ env.ARTIFACT_NAME }}.zip
Expand Down Expand Up @@ -110,6 +118,10 @@ jobs:
- name: SHA256 checksum
run: openssl sha256 ${{ env.ARTIFACT_NAME }}.tar.bz2
working-directory: build/release
- uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: build/release/${{ env.ARTIFACT_NAME }}.tar.bz2
- uses: actions/upload-artifact@v2
with:
name: ${{ env.ARTIFACT_NAME }}.tar.bz2
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Dates are provided in the format YYYY-MM-DD.
| 592000 | 2015-08-04 | v1 (exceptional, version not bumped) | v0.9.0.0 | v0.9.14.0 | blocktime = 240 seconds, CryptoNight-Lite, lower mining priority for ringsize < 3 |
| 963500 | 2018-06-03 | v7 | v0.12.0.0 | v0.12.9.0-aeon | Rebase to Monero's latest codebase with RingCT disabled, CryptoNight-Lite variant 1, limited use of ringsize 1, ban ringsize 2 |
| 1146200 | 2019-10-25 | v8 | v0.13.0.0-aeon | v0.13.1.0-aeon | Switch to K12 PoW, reduced tx size with Borromean sigs, fixed ringsize 3, long-term block size, enforced 10 block age |
| 1280000 | 2020-11-11 | v9 | v0.14.1.0-aeon | v0.14.2.0-aeon | Difficulty algorithm variant 9 (cut/sort removed, lag reduced to 8), change to the block median used to calculate penalty, deterministic unlock times |
| 1280000 | 2020-11-11 | v9 | v0.14.1.0-aeon | v0.14.2.1-aeon | Difficulty algorithm variant 9 (cut/sort removed, lag reduced to 8), change to the block median used to calculate penalty, deterministic unlock times |

## Compiling Aeon from source

Expand Down Expand Up @@ -168,7 +168,7 @@ invokes cmake commands as needed.
* Change to the root of the source code directory, change to the most recent release tag, and build:

cd aeon
git checkout v0.14.2.0-aeon
git checkout v0.14.2.1-aeon
make

*Optional*: If your machine has several cores and enough memory, enable
Expand Down Expand Up @@ -232,7 +232,7 @@ Tested on a Raspberry Pi Zero with a clean install of minimal Raspbian Stretch (
```
git clone https://github.com/aeonix/aeon.git
cd aeon
git checkout tags/v0.14.2.0-aeon
git checkout tags/v0.14.2.1-aeon
```
* Build:
```
Expand Down Expand Up @@ -329,9 +329,9 @@ application.

cd aeon

* If you would like a specific [version/tag](https://github.com/aeonix/aeon/tags), do a git checkout for that version. eg. 'v0.14.2.0-aeon'. If you dont care about the version and just want binaries from master, skip this step:
* If you would like a specific [version/tag](https://github.com/aeonix/aeon/tags), do a git checkout for that version. eg. 'v0.14.2.1-aeon'. If you dont care about the version and just want binaries from master, skip this step:

git checkout v0.14.2.0-aeon
git checkout v0.14.2.1-aeon

* If you are on a 64-bit system, run:

Expand Down
2 changes: 1 addition & 1 deletion src/version.cpp.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define DEF_MONERO_VERSION_TAG "@VERSIONTAG@"
#define DEF_MONERO_VERSION "0.14.2.0"
#define DEF_MONERO_VERSION "0.14.2.1"
#define DEF_MONERO_RELEASE_NAME "Chronos"
#define DEF_MONERO_VERSION_FULL DEF_MONERO_VERSION "-" DEF_MONERO_VERSION_TAG
#define DEF_MONERO_VERSION_IS_RELEASE @VERSION_IS_RELEASE@
Expand Down

0 comments on commit e946717

Please sign in to comment.