Skip to content

Commit

Permalink
Add 32-bit CI build (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
puzpuzpuz authored Aug 2, 2022
1 parent cae5b9e commit f620963
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build-32-bit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: build-32-bit
on: [push]

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.18.x]
name: Build with Go ${{ matrix.go-version }} 32-bit
steps:
- uses: actions/[email protected]
- name: Install Go
uses: actions/setup-go@v2
with:
stable: false
go-version: ${{ matrix.go-version }}

- name: Run tests
run: GOARCH=386 go test -v ./...
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ Concurrent data structures for Go. An extension for the standard `sync` package.

This library should be considered experimental, so make sure to run tests and benchmarks for your use cases before adding it to your application.

*Important note*. Only 64-bit builds are officially supported at the moment. If you need to run a 32-bit build, make sure to test it and open a GH issue in case of any problems.

### Benchmarks

Benchmark results may be found [here](BENCHMARKS.md).
Expand Down

0 comments on commit f620963

Please sign in to comment.