Change minimum required version of CMake to 3.25 #37
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 GitHub only) | |
on: | |
# when a push is made to the main branch (like when a pull request is merged, or something is pushed directly) | |
workflow_dispatch: | |
push: | |
branches: [ "main", "pr/adisidev/201" ] | |
env: | |
BUILD_TYPE: Release | |
jobs: | |
build-and-release: | |
runs-on: ubuntu-latest | |
container: | |
image: gocartio/cartogram-web:latest | |
steps: | |
- name: Install Dependencies | |
run: | | |
apt update -y | |
# add-apt-repository ppa:ubuntu-toolchain-r/test | |
# cat apt-requirements.txt | xargs apt install -y | |
apt install -y git gcc-11 g++-11 build-essential manpages-dev software-properties-common nlohmann-json3-dev libomp-dev libfftw3-dev libcairo2-dev libboost-all-dev cmake libgmp3-dev libmpfr-dev libeigen3-dev | |
# Dependencies should already be installed in the container | |
# - name: Install dependencies | |
# uses: awalsh128/cache-apt-pkgs-action@latest | |
# with: | |
# packages: gcc-11 g++-11 build-essential manpages-dev software-properties-common nlohmann-json3-dev libomp-dev libfftw3-dev libcairo2-dev libboost-all-dev cmake libgmp3-dev libmpfr-dev libeigen3-dev git | |
# version: 1.1 | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
fetch-depth: 0 | |
- name: Configure CMake | |
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} | |
- name: Build | |
run: | | |
cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target install -j$(nproc) -- | |
# - name: Run CTest | |
# working-directory: ${{github.workspace}}/build | |
# # Execute tests defined by the CMake configuration. | |
# # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail | |
# run: ctest -C ${{env.BUILD_TYPE}} | |
# - name: Run Stress Test | |
# run: | | |
# sudo make install -C build | |
# cd tests/ | |
# chmod +x stress_test.sh | |
# bash stress_test.sh | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: cartogram | |
path: ./build/bin/cartogram | |
- name: Generate and Push Tag | |
id: generate_tag | |
run: | | |
# Configure git committer | |
git config --local user.email "action@github.com" | |
git config --local user.name "GitHub Action" | |
# Fetch tags | |
git fetch --tags | |
# Get the current date | |
current_date=$(date +'%Y-%m-%d') | |
# Get the short SHA of the current HEAD | |
short_sha=$(git rev-parse --short HEAD) | |
# Create the new tag | |
git tag -a "${short_sha}" -m "New release on ${current_date}" | |
# Push the tag to the repository | |
git push origin "${short_sha}" | |
echo "new_tag=${short_sha}" >> $GITHUB_OUTPUT | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
tag_name: ${{ steps.generate_tag.outputs.new_tag }} | |
files: build/bin/cartogram | |
body: "Rolling release ${{ steps.generate_tag.outputs.release_number }}" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |