Skip to content

Merge branch 'develop' of https://github.com/decenomy/DSW into FLS-de… #43

Merge branch 'develop' of https://github.com/decenomy/DSW into FLS-de…

Merge branch 'develop' of https://github.com/decenomy/DSW into FLS-de… #43

Workflow file for this run

name: Build and Extract Files from Docker Container
on:
push:
branches:
- '*'
jobs:
build-files-linux-x64:
runs-on: ubuntu-22.04
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Build and Extract Files from Docker Container
run: |
# Extract the name of the repository and use it as the ticker value
REPO_NAME="${GITHUB_REPOSITORY##*/}"
# Build the Docker image from the Dockerfile in the repository
docker build \
--build-arg CPU_CORES=$(nproc) \
--build-arg TICKER=FLS \
--build-arg NAME=Flits \
--build-arg BASE_NAME=flits \
--build-arg TARGET=master \
-t flits-linux-x64-build \
-f contrib/docker/Dockerfile.dsw-linux-x64-wallet .
# Start the container (if it's not already running)
docker run -d --name flits-linux-x64-build-container flits-linux-x64-build
# Create a temporary directory to hold the extracted files
mkdir release_files
# Copy files from the Docker container to the local filesystem
docker cp flits-linux-x64-build-container:/FLS/deploy/linux-x64 release_files/
- name: Archive and Upload Extracted Files
uses: actions/upload-artifact@v4
with:
name: release-artifacts-linux-x64
path: release_files
build-files-linux-arm64:
runs-on: ubuntu-22.04
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Build and Extract Files from Docker Container
run: |
# Extract the name of the repository and use it as the ticker value
REPO_NAME="${GITHUB_REPOSITORY##*/}"
# Build the Docker image from the Dockerfile in the repository
docker build \
--build-arg CPU_CORES=$(nproc) \
--build-arg TICKER=FLS \
--build-arg NAME=Flits \
--build-arg BASE_NAME=flits \
--build-arg TARGET=master \
-t flits-linux-arm64-build \
-f contrib/docker/Dockerfile.dsw-linux-arm64-wallet .
# Start the container (if it's not already running)
docker run -d --name flits-linux-arm64-build-container flits-linux-arm64-build
# Create a temporary directory to hold the extracted files
mkdir release_files
# Copy files from the Docker container to the local filesystem
docker cp flits-linux-arm64-build-container:/FLS/deploy/linux-arm64 release_files/
- name: Archive and Upload Extracted Files
uses: actions/upload-artifact@v4
with:
name: release-artifacts-linux-arm64
path: release_files
build-windows-x64:
runs-on: ubuntu-22.04
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Build and Extract Files from Docker Container
run: |
# Extract the name of the repository and use it as the ticker value
REPO_NAME="${GITHUB_REPOSITORY##*/}"
# Build the Docker image from the Dockerfile in the repository
docker build \
--build-arg CPU_CORES=$(nproc) \
--build-arg TICKER=FLS \
--build-arg NAME=Flits \
--build-arg BASE_NAME=flits \
--build-arg TARGET=master \
-t flits-windows-x64-build \
-f contrib/docker/Dockerfile.dsw-windows-x64-wallet .
# Start the container (if it's not already running)
docker run -d --name flits-windows-x64-build-container flits-windows-x64-build
# Create a temporary directory to hold the extracted files
mkdir release_files
# Copy files from the Docker container to the local filesystem
docker cp flits-windows-x64-build-container:/FLS/deploy/windows-x64 release_files/
- name: Archive and Upload Extracted Files
uses: actions/upload-artifact@v4
with:
name: release-artifacts-windows-x64
path: release_files
build-macos-x64:
runs-on: ubuntu-22.04
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Build and Extract Files from Docker Container
run: |
# Extract the name of the repository and use it as the ticker value
REPO_NAME="${GITHUB_REPOSITORY##*/}"
# Build the Docker image from the Dockerfile in the repository
docker build \
--build-arg CPU_CORES=$(nproc) \
--build-arg TICKER=FLS \
--build-arg NAME=Flits \
--build-arg BASE_NAME=flits \
--build-arg TARGET=master \
-t flits-macos-x64-build \
-f contrib/docker/Dockerfile.dsw-macos-x64-wallet .
# Start the container (if it's not already running)
docker run -d --name flits-macos-x64-build-container flits-macos-x64-build
# Create a temporary directory to hold the extracted files
mkdir release_files
# Copy files from the Docker container to the local filesystem
docker cp flits-macos-x64-build-container:/FLS/deploy/macos-x64 release_files/
- name: Archive and Upload Extracted Files
uses: actions/upload-artifact@v4
with:
name: release-artifacts-macos-x64
path: release_files