Fix release yaml #47
Workflow file for this run
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
name: Build and Release | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build-release: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-24.04 | |
c_compiler: gcc-12 | |
cpp_compiler: g++-12 | |
arm_c_compiler: aarch64-linux-gnu-gcc | |
arm_cpp_compiler: aarch64-linux-gnu-g++ | |
- os: ubuntu-22.04 | |
c_compiler: gcc | |
cpp_compiler: g++ | |
arm_c_compiler: aarch64-linux-gnu-gcc | |
arm_cpp_compiler: aarch64-linux-gnu-g++ | |
- os: ubuntu-20.04 | |
c_compiler: gcc | |
cpp_compiler: g++ | |
arm_c_compiler: aarch64-linux-gnu-gcc | |
arm_cpp_compiler: aarch64-linux-gnu-g++ | |
- os: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install cross compiler | |
if: ${{ Contains(matrix.os, 'ubuntu-22.04') || Contains(matrix.os, 'ubuntu-20.04')}} | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y g++-aarch64-linux-gnu gcc-aarch64-linux-gnu | |
- name: Install gcc-12 | |
if: ${{ Contains(matrix.os, 'ubuntu-24.04') }} | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y g++-12-aarch64-linux-gnu gcc-12-aarch64-linux-gnu gcc-12 g++-12 g++-aarch64-linux-gnu gcc-aarch64-linux-gnu | |
- name: Setup vcpkg | |
uses: lukka/run-vcpkg@v11 | |
id: runvcpkg | |
with: | |
# The vcpkg.json file, which will be part of cache key computation. | |
vcpkgJsonGlob: '**/src/vcpkg.json' | |
- name: Download cloudfuse for Windows | |
if: ${{ Contains(matrix.os, 'windows') }} | |
shell: pwsh | |
run: | | |
$download_url = Invoke-RestMethod -Uri "https://api.github.com/repos/Seagate/cloudfuse/releases/latest" | Select-Object -ExpandProperty assets | Where-Object { $_.name -like "*no_gui*" } | Where-Object { $_.name -like "*windows_amd64.exe*" } | Select-Object -ExpandProperty browser_download_url | |
$file_name = $download_url.Split('/')[-1] | |
Invoke-WebRequest -Uri $download_url -OutFile $file_name | |
- name: Download cloudfuse for Linux amd64 (no_gui) | |
if: ${{ Contains(matrix.os, 'ubuntu') }} | |
run: | | |
download_url=$(curl -s https://api.github.com/repos/Seagate/cloudfuse/releases/latest | jq -r '.assets[] | select(.name | (contains("no_gui") and contains("linux_amd64.deb"))) | .browser_download_url') | |
curl -LO $download_url | |
- name: Download cloudfuse for Linux arm64 (no_gui) | |
if: ${{ Contains(matrix.os, 'ubuntu') }} | |
run: | | |
download_url=$(curl -s https://api.github.com/repos/Seagate/cloudfuse/releases/latest | jq -r '.assets[] | select(.name | (contains("no_gui") and contains("linux_arm64.deb"))) | .browser_download_url') | |
curl -LO $download_url | |
- name: Run build script for Linux x64 | |
if: ${{ Contains(matrix.os, 'ubuntu') }} | |
run: > | |
./build_plugin_x64.sh | |
-DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }} | |
-DCMAKE_C_COMPILER=${{ matrix.c_compiler }} | |
- name: Package Artifacts Linux x64 | |
if: ${{ Contains(matrix.os, 'ubuntu') }} | |
run: | | |
mkdir nx-lyve-cloud-plugin-${{ matrix.os }}_x64 | |
mv ../nx-lyve-cloud-plugin-build/cloudfuse_plugin/*.so nx-lyve-cloud-plugin-${{ matrix.os }}_x64/cloudfuse_plugin.so | |
mv ./cloudfuse*_linux_amd64.deb nx-lyve-cloud-plugin-${{ matrix.os }}_x64/ | |
cp ./install_plugin_linux.sh nx-lyve-cloud-plugin-${{ matrix.os }}_x64/ | |
zip -r nx-lyve-cloud-plugin-${{ matrix.os }}_x64.zip nx-lyve-cloud-plugin-${{ matrix.os }}_x64 | |
- name: Cleanup Build | |
if: ${{ Contains(matrix.os, 'ubuntu') }} | |
run: > | |
rm -r ../nx-lyve-cloud-plugin-build/ | |
- name: Run build script for Linux arm64 | |
if: ${{ Contains(matrix.os, 'ubuntu') }} | |
run: > | |
./build_plugin_arm64.sh | |
-DCMAKE_CXX_COMPILER=${{ matrix.arm_cpp_compiler }} | |
-DCMAKE_C_COMPILER=${{ matrix.arm_c_compiler }} | |
- name: Package Artifacts Linux arm64 | |
if: ${{ Contains(matrix.os, 'ubuntu') }} | |
run: | | |
mkdir nx-lyve-cloud-plugin-${{ matrix.os }}_arm64 | |
mv ../nx-lyve-cloud-plugin-build/cloudfuse_plugin/*.so nx-lyve-cloud-plugin-${{ matrix.os }}_arm64/cloudfuse_plugin.so | |
mv ./cloudfuse*_linux_arm64.deb nx-lyve-cloud-plugin-${{ matrix.os }}_arm64/ | |
cp ./install_plugin_linux.sh nx-lyve-cloud-plugin-${{ matrix.os }}_arm64/ | |
zip -r nx-lyve-cloud-plugin-${{ matrix.os }}_arm64.zip nx-lyve-cloud-plugin-${{ matrix.os }}_arm64 | |
- name: Run build script for Windows | |
shell: powershell | |
if: ${{ Contains(matrix.os, 'windows') }} | |
run: > | |
.\build_plugin.bat | |
--no-tests | |
- name: Package Artifacts Windows | |
shell: powershell | |
if: ${{ Contains(matrix.os, 'windows') }} | |
run: | | |
mkdir nx-lyve-cloud-plugin-windows | |
mv ..\nx-lyve-cloud-plugin-build\cloudfuse_plugin\Release\cloudfuse_plugin.dll nx-lyve-cloud-plugin-windows\cloudfuse_plugin.dll | |
mv .\install_plugin_windows.bat nx-lyve-cloud-plugin-windows\ | |
mv .\cloudfuse*_windows_amd64.exe nx-lyve-cloud-plugin-windows\ | |
Compress-Archive nx-lyve-cloud-plugin-windows nx-lyve-cloud-plugin-windows.zip | |
- name: Archive production artifacts from Ubuntu x64 | |
if: ${{ Contains(matrix.os, 'ubuntu') }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: nx-lyve-cloud-plugin-${{ matrix.os }}_x64 | |
path: nx-lyve-cloud-plugin-${{ matrix.os }}_x64.zip | |
if-no-files-found: error | |
- name: Archive production artifacts from Ubuntu arm64 | |
if: ${{ Contains(matrix.os, 'ubuntu') }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: nx-lyve-cloud-plugin-${{ matrix.os }}_arm64 | |
path: nx-lyve-cloud-plugin-${{ matrix.os }}_arm64.zip | |
if-no-files-found: error | |
- name: Archive production artifacts from Windows | |
if: ${{ Contains(matrix.os, 'windows') }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: nx-lyve-cloud-plugin-windows | |
path: nx-lyve-cloud-plugin-windows.zip | |
if-no-files-found: error | |
release: | |
needs: build-release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Download all workflow run artifacts | |
uses: actions/download-artifact@v4 | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: | | |
nx-lyve-cloud-plugin-ubuntu-24.04_x64/* | |
nx-lyve-cloud-plugin-ubuntu-22.04_x64/* | |
nx-lyve-cloud-plugin-ubuntu-20.04_x64/* | |
nx-lyve-cloud-plugin-ubuntu-24.04_arm64/* | |
nx-lyve-cloud-plugin-ubuntu-22.04_arm64/* | |
nx-lyve-cloud-plugin-ubuntu-20.04_arm64/* | |
nx-lyve-cloud-plugin-windows/* |