CI - Updated version handling (#1123) #37
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: package | |
on: | |
push: | |
branches: [master] | |
jobs: | |
Package: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: Aidan63/setup-haxe@3d3101bcd0a2001699fc8295f4d9eddd0724d3e9 | |
with: | |
haxe-version: 4.3.4 | |
- name: Set Haxelib | |
run: | | |
haxe -version | |
haxelib dev hxcpp . | |
- name: 'Get Previous tag' | |
id: previoustag | |
uses: "WyriHaximus/github-action-get-previous-tag@v1" | |
with: | |
prefix: v | |
- name: Set Version | |
run: haxe -p tools/version --run Write ${{ steps.previoustag.outputs.tag }} > version.env | |
- name: Build Tool | |
run: | | |
cd tools/hxcpp | |
haxe compile.hxml | |
- name: Check XCode | |
if: startsWith(matrix.os,'macos') | |
run: xcode-select -p | |
- name: Build Cppia | |
run: | | |
cd project | |
haxe compile-cppia.hxml -D HXCPP_M64 | |
- name: Clean Project | |
if: startsWith(matrix.os,'ubuntu') | |
run: | | |
rm -rf project/cppia_bin | |
- name: Archive Linux Results | |
if: startsWith(matrix.os,'ubuntu') | |
uses: actions/upload-artifact@v4 | |
with: | |
name: linux-64 | |
path: | | |
bin/Linux64/Cppia | |
tools | |
toolchain | |
version.env | |
src | |
run.n | |
include | |
hxcpp.n | |
haxelib.json | |
Changes.md | |
hxcpp | |
test | |
docs | |
project | |
README.md | |
build-tool | |
java | |
haxelib.xml | |
LICENSE.txt | |
- name: Archive Windows Results | |
if: startsWith(matrix.os,'windows') | |
uses: actions/upload-artifact@v4 | |
with: | |
name: windows-64 | |
path: | | |
bin/Windows64/Cppia.exe | |
- name: Archive Mac Results | |
if: startsWith(matrix.os,'macos') | |
uses: actions/upload-artifact@v4 | |
with: | |
name: mac-64 | |
path: | | |
bin/Mac64/Cppia | |
Release: | |
needs: Package | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download Linux | |
uses: actions/download-artifact@v4 | |
with: | |
name: linux-64 | |
path: hxcpp | |
- name: Download Mac | |
uses: actions/download-artifact@v4 | |
with: | |
name: mac-64 | |
path: hxcpp/bin/Mac64/ | |
- name: Download Windows | |
uses: actions/download-artifact@v4 | |
with: | |
name: windows-64 | |
path: hxcpp/bin/Windows64/ | |
- name: List Files | |
run: ls -R | |
- name: Get Version | |
run: | | |
cat hxcpp/version.env | |
cat hxcpp/version.env >> $GITHUB_ENV | |
rm hxcpp/version.env | |
- name: Zip release | |
run: | | |
mv hxcpp hxcpp-${{ env.hxcpp_release }} | |
zip -r hxcpp-${{ env.hxcpp_release }}.zip hxcpp-${{ env.hxcpp_release }} | |
- name: Create Release | |
uses: ncipollo/release-action@v1 | |
with: | |
tag: v${{ env.hxcpp_release }} | |
commit: ${{ github.head_ref }} | |
name: Release ${{ env.hxcpp_release }} | |
draft: false | |
prerelease: false | |
artifacts: ./hxcpp-${{ env.hxcpp_release }}.zip |