-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
335 additions
and
22 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,68 @@ | ||
name: Create Side Image | ||
on: | ||
push: | ||
branches: ["side"] | ||
paths: | ||
# Source files in each member | ||
- "compute/src/**" | ||
- "p2p/src/**" | ||
- "workflows/src/**" | ||
# Cargo in each member | ||
- "compute/Cargo.toml" | ||
- "p2p/Cargo.toml" | ||
- "workflows/Cargo.toml" | ||
# root-level changes | ||
- "Cargo.lock" | ||
- "Cross.toml" | ||
- "Dockerfile" | ||
- "compose.yml" | ||
# workflow itself | ||
- ".github/workflows/build_side_container.yml" | ||
|
||
jobs: | ||
build-and-push: | ||
name: Build and Push | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Get Unix Time | ||
id: timestamp | ||
run: echo "timestamp=$(date +%s)" >> $GITHUB_OUTPUT | ||
|
||
- name: Get SHA | ||
id: sha | ||
run: echo "sha=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | ||
|
||
- name: Get Branch Name | ||
id: branch | ||
run: echo "branch=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_OUTPUT | ||
|
||
- name: Set Image Tag | ||
id: itag | ||
run: echo "itag=${{ steps.branch.outputs.branch }}-${{ steps.sha.outputs.sha }}-${{ steps.timestamp.outputs.timestamp }}" >> $GITHUB_OUTPUT | ||
|
||
- name: Build and push | ||
uses: docker/build-push-action@v6 | ||
env: | ||
IMAGE_TAG: ${{ steps.itag.outputs.itag }} | ||
with: | ||
platforms: linux/amd64, linux/arm64, linux/arm, linux/arm64v8 | ||
push: true | ||
tags: | | ||
firstbatch/dkn-compute-node:unstable | ||
firstbatch/dkn-compute-node:${{ env.IMAGE_TAG }} |
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,116 @@ | ||
name: Build and Publish Compute Side Releases | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
check_release: | ||
if: "contains(github.event.release.tag_name, '-side')" # continue if the tag ends with -side | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Echo tag | ||
run: | | ||
echo "tag name: ${{ github.event.release.tag_name }}" | ||
echo "release name: ${{ github.event.release.name }}" | ||
build: | ||
needs: check_release | ||
runs-on: ${{ matrix.runner }} | ||
strategy: | ||
matrix: | ||
include: | ||
- { | ||
runner: macos-latest, | ||
osname: macOS, | ||
arch: amd64, | ||
target: x86_64-apple-darwin, | ||
command: build, | ||
} | ||
- { | ||
runner: macos-latest, | ||
osname: macOS, | ||
arch: arm64, | ||
target: aarch64-apple-darwin, | ||
command: build, | ||
} | ||
- { | ||
runner: ubuntu-latest, | ||
osname: linux, | ||
arch: amd64, | ||
target: x86_64-unknown-linux-gnu, | ||
command: build, | ||
} | ||
- { | ||
runner: ubuntu-latest, | ||
osname: linux, | ||
arch: arm64, | ||
target: aarch64-unknown-linux-gnu, | ||
command: build, | ||
build_args: --no-default-features, | ||
} | ||
- { | ||
runner: windows-latest, | ||
osname: windows, | ||
arch: amd64, | ||
target: x86_64-pc-windows-msvc, | ||
command: build, | ||
extension: ".exe", | ||
} | ||
# - { runner: windows-latest, osname: windows, arch: arm64, target: aarch64-pc-windows-msvc, command: build, extension: ".exe", toolchain: nightly } | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Get the release version from the tag | ||
shell: bash | ||
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV | ||
|
||
- name: Build binary | ||
uses: houseabsolute/actions-rust-cross@v0 | ||
with: | ||
command: ${{ matrix.command }} | ||
target: ${{ matrix.target }} | ||
args: "--locked --release ${{ matrix.build_args }}" | ||
strip: true | ||
|
||
- name: Prepare Release File | ||
run: | | ||
# move the binary | ||
mv target/${{ matrix.target }}/release/dkn-compute${{ matrix.extension }} ./dkn-compute-binary-${{ matrix.osname }}-${{ matrix.arch }}${{ matrix.extension }} | ||
- name: Upload Launch Artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: dkn-compute-binary-${{ matrix.osname }}-${{ matrix.arch }} | ||
path: dkn-compute-binary-${{ matrix.osname }}-${{ matrix.arch }}${{ matrix.extension }} | ||
|
||
release: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 # Fetch all tags and history | ||
|
||
- name: Download Launch Artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
merge-multiple: true | ||
path: ./artifacts | ||
|
||
- name: Create release with artifacts | ||
uses: ncipollo/release-action@v1 | ||
with: | ||
name: ${{ github.event.release.name }} | ||
tag: ${{ github.event.release.tag_name }} | ||
artifacts: "artifacts/*" | ||
artifactContentType: application/octet-stream | ||
allowUpdates: true | ||
# draft: true |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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.