Skip to content

Commit

Permalink
GH-6: Add test CI: i386 (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
raulcd authored Sep 9, 2024
1 parent fbf0d2d commit 6a3c506
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,3 +146,26 @@ jobs:
- name: Test
shell: bash
run: ci/scripts/test.sh $(pwd)
build_test_386:
name: Cross-build and test for 386
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
submodules: recursive
- name: Get required Go version
run: |
(. .env && echo "GO_VERSION=${GO}") >> $GITHUB_ENV
- name: Setup Go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version: "${{ env.GO_VERSION }}"
cache: true
cache-dependency-path: go.sum
- name: Build
run: GOARCH=386 go build ./...
- name: Test
# WIP refactor, only tests in the specified dirs have been fixed
run: GOARCH=386 go test ./parquet/file/...

0 comments on commit 6a3c506

Please sign in to comment.