Merge pull request #146 from l0go/master #168
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 ceramic | |
on: | |
push: | |
branches: | |
- '**' | |
tags: | |
- v** | |
jobs: | |
build-ceramic-windows: | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Checkout submodules | |
run: git submodule update --init --recursive | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: Setup Haxe | |
working-directory: . | |
run: | | |
$NEKOPATH = $(Convert-Path .)+'/git/haxe-binary/windows/neko' | |
$HAXEPATH = $(Convert-Path .)+'/git/haxe-binary/windows/haxe' | |
echo $NEKOPATH >> $GITHUB_PATH | |
echo $HAXEPATH >> $GITHUB_PATH | |
echo $NEKOPATH | |
echo $HAXEPATH | |
- name: Build ceramic | |
working-directory: . | |
run: | | |
cd tools | |
node ./install | |
cd ../runner | |
npm ci | |
cd .. | |
- name: Cleanup | |
working-directory: . | |
run: | | |
Remove-Item 'git/haxe-binary/linux-x86_64' -Recurse | |
Remove-Item 'git/haxe-binary/linux-arm64' -Recurse | |
Remove-Item 'git/haxe-binary/mac' -Recurse | |
cd tools | |
Remove-Item './haxe' | |
Remove-Item './haxelib' | |
Remove-Item './neko' | |
cd .. | |
- name: Run ceramic | |
working-directory: ./tools | |
run: | | |
./ceramic | |
- name: Check ceramic version | |
if: startsWith(github.ref, 'refs/tags/') | |
working-directory: ./tools | |
run: | | |
$GIT_TAG = $($env:GITHUB_REF).replace("refs/tags/", "") | |
./ceramic version --check-tag $GIT_TAG | |
- name: Create zip archive | |
working-directory: . | |
run: | | |
$ZIP_COMPRESS = $(Convert-Path .) | |
$ZIP_EXCLUDE = @(".git", ".github", "ceramic-windows.zip") | |
$ZIP_DESTINATION = 'ceramic-windows.zip' | |
$ZIP_FILES = Get-ChildItem -Path $ZIP_COMPRESS -Exclude $ZIP_EXCLUDE | |
Compress-Archive -Path $ZIP_FILES -DestinationPath $ZIP_DESTINATION -CompressionLevel Optimal | |
- name: Upload Files | |
uses: actions/upload-artifact@v4 | |
with: | |
retention-days: 1 | |
name: ceramic-windows.zip | |
path: ceramic-windows.zip | |
compression-level: 0 | |
build-ceramic-mac: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Checkout submodules | |
run: git submodule update --init --recursive | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: Setup Haxe | |
working-directory: . | |
run: | | |
set -ex | |
export NEKOPATH=$PWD'/git/haxe-binary/mac/neko' | |
export HAXEPATH=$PWD'/git/haxe-binary/mac/haxe' | |
echo 'neko path: '$NEKOPATH | |
echo 'haxe path: '$HAXEPATH | |
sudo mkdir -p /usr/local/bin | |
sudo mkdir -p /usr/local/lib | |
sudo mkdir -p /usr/local/share/haxe | |
sudo ln -s $HAXEPATH/haxe /usr/local/bin/haxe | |
sudo ln -s $HAXEPATH/haxelib /usr/local/bin/haxelib | |
sudo ln -s $HAXEPATH/haxe-bin /usr/local/bin/haxe-bin | |
sudo ln -s $HAXEPATH/haxelib-bin /usr/local/bin/haxelib-bin | |
sudo ln -s $HAXEPATH/std /usr/local/share/haxe/std | |
sudo ln -s $NEKOPATH/neko /usr/local/bin/neko | |
sudo ln -s $NEKOPATH/nekoc /usr/local/bin/nekoc | |
sudo ln -s $NEKOPATH/nekoml /usr/local/bin/nekoml | |
sudo ln -s $NEKOPATH/nekotools /usr/local/bin/nekotools | |
sudo ln -s $NEKOPATH /usr/local/lib/neko | |
sudo ln -s $NEKOPATH/libneko.dylib /usr/local/lib/libneko.dylib | |
sudo ln -s $NEKOPATH/libneko.2.4.0.dylib /usr/local/lib/libneko.2.4.0.dylib | |
sudo ln -s $NEKOPATH/libneko.2.dylib /usr/local/lib/libneko.2.dylib | |
set +x | |
echo 'neko: '$(neko -version) | |
echo 'haxe: '$(haxe --version) | |
- name: Build ceramic | |
working-directory: . | |
run: | | |
cd tools | |
node ./install | |
cd ../runner | |
npm ci | |
cd .. | |
- name: Cleanup | |
working-directory: . | |
run: | | |
rm -rf git/haxe-binary/linux-x86_64 | |
rm -rf git/haxe-binary/linux-arm64 | |
rm -rf git/haxe-binary/windows | |
cd tools | |
rm -f ./haxe.cmd | |
rm -f ./neko.cmd | |
rm -f ./ceramic.cmd | |
cd .. | |
- name: Run ceramic | |
working-directory: ./tools | |
run: | | |
./ceramic | |
- name: Check ceramic version | |
if: startsWith(github.ref, 'refs/tags/') | |
working-directory: ./tools | |
run: | | |
GIT_TAG=${GITHUB_REF/refs\/tags\//} | |
./ceramic version --check-tag $GIT_TAG | |
- name: Create zip archive | |
run: zip --symlinks -9 -r 'ceramic-mac.zip' . -x ".git/*" ".github/*" | |
- name: Upload Files | |
uses: actions/upload-artifact@v4 | |
with: | |
retention-days: 1 | |
name: ceramic-mac.zip | |
path: ceramic-mac.zip | |
compression-level: 0 | |
build-ceramic-linux: | |
strategy: | |
matrix: | |
include: | |
- os: "ubuntu-22.04" | |
arch: "x86_64" | |
- os: "ubuntu-22.04-arm" | |
arch: "arm64" | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Checkout submodules | |
run: git submodule update --init --recursive | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: Setup Haxe | |
working-directory: . | |
run: | | |
export NEKOPATH=$PWD'/git/haxe-binary/linux-${{ matrix.arch }}/neko' | |
export HAXEPATH=$PWD'/git/haxe-binary/linux-${{ matrix.arch }}/haxe' | |
echo 'neko path: '$NEKOPATH | |
echo 'haxe path: '$HAXEPATH | |
sudo mkdir -p /usr/local/bin | |
sudo mkdir -p /usr/local/lib | |
sudo mkdir -p /usr/local/share/haxe | |
sudo ln -s $HAXEPATH/haxe /usr/local/bin/haxe | |
sudo ln -s $HAXEPATH/haxelib /usr/local/bin/haxelib | |
sudo ln -s $HAXEPATH/haxe-bin /usr/local/bin/haxe-bin | |
sudo ln -s $HAXEPATH/haxelib-bin /usr/local/bin/haxelib-bin | |
sudo ln -s $HAXEPATH/std /usr/local/share/haxe/std | |
sudo ln -s $NEKOPATH/neko /usr/local/bin/neko | |
sudo ln -s $NEKOPATH/nekoc /usr/local/bin/nekoc | |
sudo ln -s $NEKOPATH/nekoml /usr/local/bin/nekoml | |
sudo ln -s $NEKOPATH/nekotools /usr/local/bin/nekotools | |
sudo ln -s $NEKOPATH /usr/local/lib/neko | |
sudo ln -s $NEKOPATH/libneko.so /usr/local/lib/libneko.so | |
sudo ln -s $NEKOPATH/libneko.so.2.4.0 /usr/local/lib/libneko.so.2.4.0 | |
sudo ln -s $NEKOPATH/libneko.so.2 /usr/local/lib/libneko.so.2 | |
sudo ldconfig | |
sudo ldconfig /usr/local/lib | |
echo 'neko: '$(neko -version) | |
echo 'haxe: '$(haxe --version) | |
- name: Build ceramic | |
working-directory: . | |
run: | | |
cd tools | |
node ./install | |
cd ../runner | |
npm ci | |
cd .. | |
- name: Cleanup | |
working-directory: . | |
run: | | |
rm -rf git/haxe-binary/mac | |
if [ ${{ matrix.arch == 'x86_64' }}]; then | |
rm -rf git/haxe-binary/linux-arm64 | |
else | |
rm -rf git/haxe-binary/linux-x86_64 | |
fi | |
rm -rf git/haxe-binary/windows | |
cd tools | |
rm -f ./haxe.cmd | |
rm -f ./neko.cmd | |
rm -f ./ceramic.cmd | |
cd .. | |
- name: Run ceramic | |
working-directory: ./tools | |
run: | | |
./ceramic | |
- name: Check ceramic version | |
if: startsWith(github.ref, 'refs/tags/') | |
working-directory: ./tools | |
run: | | |
GIT_TAG=${GITHUB_REF/refs\/tags\//} | |
./ceramic version --check-tag $GIT_TAG | |
- name: Create zip archive | |
run: zip --symlinks -9 -r 'ceramic-linux-${{ matrix.arch }}.zip' . -x ".git/*" ".github/*" | |
- name: Upload Files | |
uses: actions/upload-artifact@v4 | |
with: | |
retention-days: 1 | |
name: ceramic-linux-${{ matrix.arch }}.zip | |
path: ceramic-linux-${{ matrix.arch }}.zip | |
compression-level: 0 | |
create-release: | |
if: startsWith(github.ref, 'refs/tags/') | |
needs: [build-ceramic-windows, build-ceramic-mac, build-ceramic-linux] | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download ceramic-windows.zip | |
uses: actions/download-artifact@v4 | |
with: | |
name: ceramic-windows.zip | |
path: . | |
- name: Download ceramic-mac.zip | |
uses: actions/download-artifact@v4 | |
with: | |
name: ceramic-mac.zip | |
path: . | |
- name: Download ceramic-linux-x86_64.zip | |
uses: actions/download-artifact@v4 | |
with: | |
name: ceramic-linux-x86_64.zip | |
path: . | |
- name: Download ceramic-linux-arm64.zip | |
uses: actions/download-artifact@v4 | |
with: | |
name: ceramic-linux-arm64.zip | |
path: . | |
- name: Extract tag name | |
id: extract_tag | |
run: echo "TAG_NAME=${GITHUB_REF##*/}" >> $GITHUB_ENV | |
- name: Create Release | |
id: create_release | |
uses: softprops/action-gh-release@v2 | |
with: | |
tag_name: ${{ github.ref }} | |
name: Ceramic ${{ env.TAG_NAME }} | |
body: | | |
Ceramic ${{ env.TAG_NAME }} | |
draft: false | |
prerelease: false | |
files: | | |
ceramic-windows.zip | |
ceramic-mac.zip | |
ceramic-linux-x86_64.zip | |
ceramic-linux-arm64.zip | |
generate-api-docs: | |
if: startsWith(github.ref, 'refs/tags/') | |
needs: [create-release] | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Dispatch event | |
uses: ceramic-engine/repository-dispatch@v1 | |
with: | |
token: ${{ secrets.PAT_PUBLIC }} | |
repository: ceramic-engine/api-docs | |
event-type: deploy-api-docs | |
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}' |