-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: PoAn Yang <poan.yang@suse.com>
- Loading branch information
1 parent
7f003f1
commit 4253429
Showing
5 changed files
with
120 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
name: build | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- v* | ||
tags: | ||
- v* | ||
pull_request: | ||
jobs: | ||
build: | ||
name: Build binaries | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
|
||
# Build binaries | ||
- name: Run ci | ||
run: make ci | ||
|
||
- uses: codecov/codecov-action@v4 | ||
with: | ||
files: ./coverage.out | ||
flags: unittests | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
|
||
- name: Upload binaries | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: binaries_artifact | ||
path: ./bin/* | ||
|
||
build_push_image: | ||
name: Build and push image | ||
runs-on: ubuntu-latest | ||
needs: build | ||
if: ${{ startsWith(github.ref, 'refs/heads/') || startsWith(github.ref, 'refs/tags/') }} | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Download binaries | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: binaries_artifact | ||
path: ./bin/ | ||
|
||
- name: Add executable permission | ||
run: | | ||
chmod +x ./bin/* | ||
- name: Copy bin folder to package | ||
run: | | ||
cp -r ./bin ./package/ | ||
# For multi-platform support | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Declare branch | ||
run: | | ||
echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> "$GITHUB_ENV" | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
# longhorn/longhorn-manager image | ||
- name: docker-publish | ||
if: ${{ startsWith(github.ref, 'refs/heads/') }} | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: ./ | ||
push: true | ||
platforms: linux/amd64,linux/arm64 | ||
tags: longhorn/longhorn-manager:${{ env.branch }}-head | ||
file: package/Dockerfile | ||
|
||
- name: docker-publish-with-tag | ||
if: ${{ startsWith(github.ref, 'refs/tags/') }} | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: ./ | ||
push: true | ||
platforms: linux/amd64,linux/arm64 | ||
tags: longhorn/longhorn-manager:${{ github.ref_name }} | ||
file: package/Dockerfile |
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 |
---|---|---|
@@ -1,10 +1,22 @@ | ||
# syntax=docker/dockerfile:1.7.0 | ||
|
||
FROM registry.suse.com/bci/bci-base:15.6 | ||
|
||
ARG TARGETPLATFORM | ||
RUN if [ "$TARGETPLATFORM" != "linux/amd64" ] && [ "$TARGETPLATFORM" != "linux/arm64" ]; then \ | ||
echo "Error: Unsupported TARGETPLATFORM: $TARGETPLATFORM" && \ | ||
exit 1; \ | ||
fi | ||
|
||
ENV ARCH ${TARGETPLATFORM#linux/} | ||
|
||
COPY package/bin/longhorn-manager-${ARCH} /usr/local/sbin/longhorn-manager | ||
|
||
COPY package/launch-manager package/nsmounter /usr/local/sbin/ | ||
|
||
RUN zypper -n install iputils iproute2 nfs-client cifs-utils bind-utils e2fsprogs xfsprogs zip unzip && \ | ||
rm -rf /var/cache/zypp/* | ||
|
||
COPY bin package/launch-manager package/nsmounter /usr/local/sbin/ | ||
|
||
VOLUME /usr/local/sbin | ||
EXPOSE 9500 | ||
CMD ["launch-manager"] |
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