Update GitHub Actions workflow for multi-platform build #3
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: C++ CI/CD | |
permissions: | |
contents: write | |
issues: write | |
pull-requests: write | |
on: | |
push: | |
branches: [ "main" ] | |
tags: | |
- 'v*' | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
name: Build on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false # 允许某个平台失败的情况下继续其他平台的构建 | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
include: | |
- os: windows-latest | |
exe_name: minidb.exe | |
artifact_name: minidb-windows | |
- os: ubuntu-latest | |
exe_name: minidb | |
artifact_name: minidb-linux | |
- os: macos-latest | |
exe_name: minidb | |
artifact_name: minidb-macos | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install dependencies (Ubuntu) | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y build-essential cmake | |
- name: Install dependencies (macOS) | |
if: matrix.os == 'macos-latest' | |
run: | | |
brew install cmake | |
- name: Configure CMake | |
run: | | |
mkdir build | |
cd build | |
cmake .. | |
- name: Build | |
working-directory: ./build | |
run: | | |
cmake --build . --config Release | |
- name: Run tests | |
working-directory: ./build | |
run: | | |
ctest -C Release --output-on-failure | |
- name: Prepare Release Asset | |
shell: bash | |
run: | | |
mkdir release-asset | |
if [ "${{ matrix.os }}" = "windows-latest" ]; then | |
cp build/Release/${{ matrix.exe_name }} release-asset/ | |
else | |
cp build/${{ matrix.exe_name }} release-asset/ | |
fi | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ matrix.artifact_name }} | |
path: release-asset/${{ matrix.exe_name }} | |
release: | |
needs: build | |
if: startsWith(github.ref, 'refs/tags/') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/download-artifact@v3 | |
with: | |
path: artifacts | |
- name: Display structure of downloaded files | |
run: ls -R artifacts/ | |
- name: Create Release | |
uses: softprops/action-gh-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
files: | | |
artifacts/minidb-windows/minidb.exe | |
artifacts/minidb-linux/minidb | |
artifacts/minidb-macos/minidb | |
draft: false | |
prerelease: false | |
generate_release_notes: true | |
name: Release ${{ github.ref_name }} | |
body: | | |
## MinidDB Release ${{ github.ref_name }} | |
### Downloads | |
- Windows: `minidb.exe` | |
- Linux: `minidb` | |
- macOS: `minidb` | |
### SHA256 Checksums | |
``` | |
${{ hashFiles('artifacts/minidb-windows/minidb.exe') }} minidb.exe | |
${{ hashFiles('artifacts/minidb-linux/minidb') }} minidb (Linux) | |
${{ hashFiles('artifacts/minidb-macos/minidb') }} minidb (macOS) | |
``` |