Skip to content

Fixup readme and Attempt to fixup github CI stack issue with highctidh #129

Fixup readme and Attempt to fixup github CI stack issue with highctidh

Fixup readme and Attempt to fixup github CI stack issue with highctidh #129

name: MacOS Golang build and test
on: [push]
jobs:
build:
runs-on: ${{ matrix.OS }}
strategy:
matrix:
OS: ["macos-14"]
go-version: ["1.21.x", "1.22.0"]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Display Go version
shell: bash
run: go version
- name: Install golang dependencies
shell: bash
run: |
export HIGHCTIDH_PORTABLE=1
export CGO_ENABLED=1
go get -v ./...
- name: Build golang
shell: bash
run: |
export HIGHCTIDH_PORTABLE=1
export CGO_ENABLED=1
go build -v ./...
- name: Golang test
shell: bash
run: |

Check failure on line 42 in .github/workflows/macos-golang-test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/macos-golang-test.yml

Invalid workflow file

You have an error in your yaml syntax on line 42
export HIGHCTIDH_PORTABLE=1
export CGO_ENABLED=1
go test -v ./...
env:
CGO_LDFLAGS: -Wl,-stack_size,0x1F40000