Attempt to grab release tag #12
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: release-deb | |
on: | |
push: | |
tags: | |
- 'v*.*.*' | |
branches: | |
# - master | |
# - main | |
- release-actions | |
paths-ignore: | |
- 'AUTHORS.md' | |
- 'LICENSE.md' | |
- 'README.md' | |
pull_request: | |
paths-ignore: | |
- 'AUTHORS.md' | |
- 'LICENSE.md' | |
- 'README.md' | |
jobs: | |
build: | |
timeout-minutes: 60 | |
if: "!contains(github.event.head_commit.message, 'skip ci')" | |
name: ${{ matrix.os }} - ${{ matrix.fcompiler }} - ${{ matrix.build_type }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
# Linux | |
- os: ubuntu-latest | |
fcompiler: gfortran-12 | |
ccompiler: gcc-12 | |
shell: bash | |
build_type: debug | |
memcheck: false | |
- os: ubuntu-22.04 | |
fcompiler: gfortran-12 | |
ccompiler: gcc-12 | |
shell: bash | |
build_type: debug | |
memcheck: false | |
- os: ubuntu-20.04 | |
fcompiler: gfortran-10 | |
ccompiler: gcc-10 | |
shell: bash | |
build_type: debug | |
memcheck: false | |
defaults: | |
run: | |
shell: ${{ matrix.shell }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Show version information | |
run: | | |
${{ matrix.fcompiler }} --version | |
${{ matrix.ccompiler }} --version | |
- name: Build with Cmake | |
run: | | |
mkdir build | |
cd build | |
FC=${{ matrix.fcompiler }} CC=${{ matrix.ccompiler }} cmake -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} ../ | |
make VERBOSE=1 | |
- name: Get version and architecture | |
run: | | |
echo "RELEASE_VERSION=${{ github.event.release.tag_name }}" >> $GITHUB_ENV | |
echo "ARCH=amd64" >> $GITHUB_ENV | |
# change above line if not building for amd64 | |
- name: Build release directory | |
run: | | |
cd build | |
mkdir feq-parse_${{ env.RELEASE_VERSION }}-1_${{ env.ARCH }} | |
cd feq-parse_${{ env.RELEASE_VERSION }}-1_${{ env.ARCH }} | |
mkdir DEBIAN usr usr/local usr/local/include usr/local/lib | |
cp ../include/*.mod usr/local/include/ | |
cp ../src/*.so usr/local/lib/ | |
cp ../src/*.a usr/local/lib/ | |
cat << EOF > DEBIAN/control | |
Package: feq-parse | |
Version: ${{ env.RELEASE_VERSION }} | |
Section: libs | |
Priority: optional | |
Architecture: ${{ env.ARCH }} | |
Maintainer: Fluid Numerics LLC [email protected] | |
Description: An equation parser Fortran class that is used to interpret and evaluate functions provided as strings. | |
EOF | |
- name: Build .deb | |
run: | | |
cd build | |
dpkg --build feq-parse_${{ env.RELEASE_VERSION }}-1_${{ env.ARCH }} | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: Release v${{ env.RELEASE_VERSION }} | |
draft: false | |
prerelease: false | |
- name: Upload Release Asset (.deb) | |
id: upload-release-asset | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./build/feq-parse_${{ env.RELEASE_VERSION }}-1_${{ env.ARCH }}.deb | |
asset_name: feq-parse_${{ env.RELEASE_VERSION }}-1_${{ env.ARCH }}.deb | |
asset_content_type: application/vnd.debian.binary-package |