mirror of
https://github.com/metabarcoding/obitools4.git
synced 2026-03-25 05:20:52 +00:00
Merge pull request #77 from metabarcoding/push-lwtnswxmorrq
Push lwtnswxmorrq
This commit is contained in:
15
.github/workflows/release.yml
vendored
15
.github/workflows/release.yml
vendored
@@ -32,12 +32,11 @@ jobs:
|
|||||||
goos: linux
|
goos: linux
|
||||||
goarch: amd64
|
goarch: amd64
|
||||||
output_name: linux_amd64
|
output_name: linux_amd64
|
||||||
- os: ubuntu-latest
|
- os: ubuntu-24.04-arm
|
||||||
goos: linux
|
goos: linux
|
||||||
goarch: arm64
|
goarch: arm64
|
||||||
output_name: linux_arm64
|
output_name: linux_arm64
|
||||||
cross_compile: true
|
- os: macos-15-intel
|
||||||
- os: macos-latest
|
|
||||||
goos: darwin
|
goos: darwin
|
||||||
goarch: amd64
|
goarch: amd64
|
||||||
output_name: darwin_amd64
|
output_name: darwin_amd64
|
||||||
@@ -63,17 +62,17 @@ jobs:
|
|||||||
TAG=${GITHUB_REF#refs/tags/Release_}
|
TAG=${GITHUB_REF#refs/tags/Release_}
|
||||||
echo "version=$TAG" >> $GITHUB_OUTPUT
|
echo "version=$TAG" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Install cross-compilation tools (Linux ARM64 only)
|
- name: Install build tools (macOS)
|
||||||
if: matrix.cross_compile
|
if: runner.os == 'macOS'
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
# Ensure Xcode Command Line Tools are installed
|
||||||
sudo apt-get install -y gcc-aarch64-linux-gnu
|
xcode-select --install 2>/dev/null || true
|
||||||
|
xcode-select -p
|
||||||
|
|
||||||
- name: Build binaries
|
- name: Build binaries
|
||||||
env:
|
env:
|
||||||
GOOS: ${{ matrix.goos }}
|
GOOS: ${{ matrix.goos }}
|
||||||
GOARCH: ${{ matrix.goarch }}
|
GOARCH: ${{ matrix.goarch }}
|
||||||
CC: ${{ matrix.cross_compile && 'aarch64-linux-gnu-gcc' || '' }}
|
|
||||||
VERSION: ${{ steps.get_version.outputs.version }}
|
VERSION: ${{ steps.get_version.outputs.version }}
|
||||||
run: |
|
run: |
|
||||||
make obitools
|
make obitools
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package obioptions
|
|||||||
// Version is automatically updated by the Makefile from version.txt
|
// Version is automatically updated by the Makefile from version.txt
|
||||||
// The patch number (third digit) is incremented on each push to the repository
|
// The patch number (third digit) is incremented on each push to the repository
|
||||||
|
|
||||||
var _Version = "Release 4.4.8"
|
var _Version = "Release 4.4.9"
|
||||||
|
|
||||||
// Version returns the version of the obitools package.
|
// Version returns the version of the obitools package.
|
||||||
//
|
//
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
4.4.8
|
4.4.9
|
||||||
|
|||||||
Reference in New Issue
Block a user