-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1842 from AntelopeIO/merge-main-10-30-23
IF: Merge main into hotstuff_integration (10/30/2023)
- Loading branch information
Showing
20 changed files
with
280 additions
and
202 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,52 @@ | ||
name: Release Actions | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
eb: | ||
name: experimental-binaries | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
actions: read | ||
steps: | ||
- name: Get ubuntu20 leap-dev.deb | ||
uses: AntelopeIO/asset-artifact-download-action@v3 | ||
with: | ||
owner: ${{github.repository_owner}} | ||
repo: ${{github.event.repository.name}} | ||
file: 'leap-dev.*amd64.deb' | ||
target: ${{github.sha}} | ||
artifact-name: leap-dev-ubuntu20-amd64 | ||
wait-for-exact-target-workflow: true | ||
- name: Get ubuntu22 leap-dev.deb | ||
uses: AntelopeIO/asset-artifact-download-action@v3 | ||
with: | ||
owner: ${{github.repository_owner}} | ||
repo: ${{github.event.repository.name}} | ||
file: 'leap-dev.*amd64.deb' | ||
target: ${{github.sha}} | ||
artifact-name: leap-dev-ubuntu22-amd64 | ||
wait-for-exact-target-workflow: true | ||
- name: Create Dockerfile | ||
run: | | ||
cat <<EOF > Dockerfile | ||
FROM scratch | ||
LABEL org.opencontainers.image.description="A collection of experimental Leap binary packages" | ||
COPY *.deb / | ||
EOF | ||
- name: Login to ghcr | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{github.repository_owner}} | ||
password: ${{github.token}} | ||
- name: Build and push experimental-binaries | ||
uses: docker/build-push-action@v3 | ||
with: | ||
push: true | ||
tags: ghcr.io/${{github.repository_owner}}/experimental-binaries:${{github.ref_name}} | ||
context: . |
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
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
Submodule chainbase
updated
3 files
+0 −4 | include/chainbase/chainbase.hpp | |
+0 −1 | include/chainbase/pinnable_mapped_file.hpp | |
+0 −20 | src/pinnable_mapped_file.cpp |
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.