Update repl #34
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
--- | |
on: [push] | |
# push: | |
# tags: | |
# - "v*" | |
name: Release | |
jobs: | |
# Build for Linux | |
build-ubuntu: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
go-version: [1.21.x] | |
arch: [x86_64, aarch64] | |
steps: | |
- name: Build | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- uses: actions/checkout@v4 | |
- run: git submodule init && git submodule update | |
- run: make && mv tau tau-linux-${{ matrix.arch }} | |
- name: Archive artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: tau-linux-${{ matrix.arch }} | |
path: ./tau-linux-${{ matrix.arch }} | |
# Build for MacOS | |
build-macos: | |
runs-on: macos-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
go-version: [1.21.x] | |
arch: [x86_64, aarch64] | |
steps: | |
- name: Build | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- uses: actions/checkout@v4 | |
- run: git submodule init && git submodule update | |
- run: brew install automake | |
- run: make && mv tau tau-macos-${{ matrix.arch }} | |
- name: Archive artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: tau-macos-${{ matrix.arch }} | |
path: ./tau-macos-${{ matrix.arch }} | |
# Build for Windows MSYS2 | |
build-msys2: | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
go-version: [1.21.x] | |
MSYS2_ARCH: [x86_64] | |
steps: | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- run: git config --global core.autocrlf input | |
- uses: actions/checkout@v4 | |
- uses: msys2/setup-msys2@v2 | |
with: | |
msystem: MINGW64 | |
update: true | |
install: >- | |
base-devel | |
autoconf-wrapper | |
autoconf | |
automake | |
libtool | |
autotools | |
make | |
mingw-w64-${{ matrix.MSYS2_ARCH }}-gcc | |
mingw-w64-${{ matrix.MSYS2_ARCH }}-gcc-libs | |
unzip | |
texinfo | |
- run: make && mv tau tau-windows-${{ matrix.MSYS2_ARCH }}.exe | |
- name: Archive artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: tau-windows-${{ matrix.MSYS2_ARCH }}.exe | |
path: ./tau-windows-${{ matrix.MSYS2_ARCH }}.exe |