fixes versions #53
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
# This workflow will automatically upload a binary artifact when a release/tag is created | |
name: Build and upload binary | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
on: | |
# allow to build manually | |
workflow_dispatch: | |
# build automatically when pushing a tag | |
push: | |
branches: | |
- "master" | |
tags: | |
- "v*" | |
jobs: | |
# ---------------------------------------------------------------------------- | |
# this will checkout and build nim stable from gh repository on manylinux2014 / CentOS 7 | |
build-linux: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: "choosenim" | |
- name: Build binary | |
run: | | |
STABLE_NIM=`curl -sSL https://nim-lang.org/channels/stable | xargs` | |
curl -O https://nim-lang.org/download/nim-$STABLE_NIM-linux_x64.tar.xz | |
tar -xvJf nim-$STABLE_NIM-linux_x64.tar.xz | |
NIMPATH=`pwd`/nim-$STABLE_NIM/bin | |
PATH=$PATH:$NIMPATH | |
# compile choosenim | |
ls -lah | |
cd choosenim | |
nimble install -y | |
nimble build --path:$NIMPATH | |
ls bin/* | |
- name: Write release version | |
run: | | |
VERSION=${GITHUB_REF_NAME#v} | |
echo Version: $VERSION | |
echo "VERSION=$VERSION" >> $GITHUB_ENV | |
- name: Upload binaries to release/tag | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
overwrite: true | |
tag: ${{ github.ref }} | |
asset_name: choosenim-${VERSION}_linux_amd64 | |
file: ${{ runner.workspace }}/choosenim/choosenim/bin/choosenim | |
build-win32-exe: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: jiro4989/setup-nim-action@v2 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build binary | |
run: | | |
nimble install -y | |
nimble build | |
dir bin/* | |
- name: Write release version | |
run: | | |
VERSION=${GITHUB_REF_NAME#v} | |
echo Version: $VERSION | |
echo "VERSION=$VERSION" >> $GITHUB_ENV | |
- name: Upload binaries to release/tag | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
overwrite: true | |
tag: ${{ github.ref }} | |
asset_name: choosenim-${VERSION}_windows_amd64.exe | |
file: ${{ runner.workspace }}/choosenim/bin/choosenim.exe | |
# ---------------------------------------------------------------------------- | |
# this uses choosenim by itself - you may need to build manually if you break choosenim | |
build-win32: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: jiro4989/setup-nim-action@v2 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build binary | |
run: | | |
nimble install -y | |
nimble build | |
dir bin/* | |
mkdir zipfile | |
mkdir zipfile/choosenim | |
cp bin/choosenim.exe zipfile/choosenim/ | |
cp scripts/runme.bat zipfile/ | |
Compress-Archive -Path zipfile/* -Destination choosenim-windows.zip | |
- name: Write release version | |
run: | | |
VERSION=${GITHUB_REF_NAME#v} | |
echo Version: $VERSION | |
echo "VERSION=$VERSION" >> $GITHUB_ENV | |
- name: Upload binaries to release/tag | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
overwrite: true | |
tag: ${{ github.ref }} | |
asset_name: choosenim-${VERSION}_windows_amd64.zip | |
file: ${{ runner.workspace }}/choosenim/choosenim-windows.zip | |
# ---------------------------------------------------------------------------- | |
# this uses choosenim by itself - you may need to build manually if you break choosenim | |
build-macos: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: jiro4989/setup-nim-action@v2 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build binary | |
run: | | |
git config --global --add safe.directory /__w/choosenim/choosenim | |
nimble install -y | |
nimble build | |
ls bin/* | |
- name: Write release version | |
run: | | |
VERSION=${GITHUB_REF_NAME#v} | |
echo Version: $VERSION | |
echo "VERSION=$VERSION" >> $GITHUB_ENV | |
- name: Upload binaries to release/tag | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
overwrite: true | |
tag: ${{ github.ref }} | |
asset_name: choosenim-${VERSION}_macosx_amd64 | |
file: ${{ runner.workspace }}/choosenim/bin/choosenim | |
build-macos_arm64: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: jiro4989/setup-nim-action@v2 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build binary | |
run: | | |
git config --global --add safe.directory /__w/choosenim/choosenim | |
nimble install -y | |
nimble build | |
ls bin/* | |
- name: Write release version | |
run: | | |
VERSION=${GITHUB_REF_NAME#v} | |
echo Version: $VERSION | |
echo "VERSION=$VERSION" >> $GITHUB_ENV | |
- name: Upload binaries to release/tag | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
overwrite: true | |
tag: ${{ github.ref }} | |
asset_name: choosenim-${VERSION}_macosx_arm64 | |
file: ${{ runner.workspace }}/choosenim/bin/choosenim |