Skip to content

feat: Update release script, make sure the major tag alway point to t… #21

feat: Update release script, make sure the major tag alway point to t…

feat: Update release script, make sure the major tag alway point to t… #21

Workflow file for this run

# Description:
# - Setup Bend with GitHub Actions
# REF:
# - https://github.com/marketplace/actions/checkout
name: Setup-Bend@Dev
on:
push:
branches:
- develop
paths-ignore:
- '**.md'
jobs:
setup-bend:
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
name: Setup Bend@${{ matrix.os }}
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Bend
uses: hustcer/setup-bend@develop
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Check bend Version
run: bend --version
- name: Run bitonic sorter using Rust interpreter (Sequential)
shell: nu {0}
run: |
print $'Rust version: (ansi g)(rustc --version)(ansi reset)'
bend run examples/bitonic_sorter.bend -s
- name: Run bitonic sorter using C interpreter (Sequential)
shell: nu {0}
if: matrix.os != 'windows-latest'
run: |
print $'Gcc version: (ansi g)(gcc --version)(ansi reset)'
bend run-c examples/bitonic_sorter.bend -s