Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci,mod: bump go version and replace travis #66

Merged
merged 3 commits into from
Mar 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 68 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
name: CI

on:
pull_request:
branches: [ master ]

jobs:

build:
name: Build
strategy:
matrix:
# Do not move this line; it is referred to by README.md.
# Versions of Go that are explicitly supported by Gonum.
go-version: [1.24.x, 1.23.x]
# macOS is omitted due to rings failing for float precision
# reasons. Fixing this requires updating plot dep version
# but this brings a whole heap of other issues that I'm
# just don't have time for right now.
platform: [ubuntu-latest]

runs-on: ${{ matrix.platform }}
env:
GOPATH: ${{ github.workspace }}
defaults:
run:
working-directory: ${{ env.GOPATH }}/src/gonum.org/v1/exp

steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}

- name: Checkout code
uses: actions/checkout@v4
with:
path: ${{ env.GOPATH }}/src/gonum.org/v1/exp

- name: Cache-Go
uses: actions/cache@v4
with:
# In order:
# * Module download cache
# * Build cache (Linux)
# * Build cache (Mac)
# * Build cache (Windows)
path: |
~/go/pkg/mod
~/.cache/go-build
~/Library/Caches/go-build
'%LocalAppData%\go-build'
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}

- name: Test
run: |
./.github/workflows/script.d/test.sh

- name: Coverage
if: matrix.platform == 'ubuntu-latest'
run: |
./.github/workflows/script.d/test-coverage.sh

- name: Upload-Coverage
if: matrix.platform == 'ubuntu-latest'
uses: codecov/codecov-action@v1
65 changes: 65 additions & 0 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: Codecov

on:
pull_request:
branches: [ master ]
types:
- closed

jobs:

build:
name: Build
if: github.event.pull_request.merged == true
strategy:
matrix:
go-version: [1.24.x]
platform: [ubuntu-latest]

runs-on: ${{ matrix.platform }}
env:
GOPATH: ${{ github.workspace }}
defaults:
run:
working-directory: ${{ env.GOPATH }}/src/gonum.org/v1/exp

steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}

- name: Checkout code
uses: actions/checkout@v4
with:
path: ${{ env.GOPATH }}/src/gonum.org/v1/exp

- name: Cache-Go
uses: actions/cache@v4
with:
# In order:
# * Module download cache
# * Build cache (Linux)
# * Build cache (Mac)
# * Build cache (Windows)
path: |
~/go/pkg/mod
~/.cache/go-build
~/Library/Caches/go-build
'%LocalAppData%\go-build'
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}

- name: Coverage
if: matrix.platform == 'ubuntu-latest'
run: |
./.github/workflows/script.d/test-coverage.sh

- name: Upload-Coverage
if: matrix.platform == 'ubuntu-latest'
uses: codecov/codecov-action@v1
with:
override_pr: ${{ github.event.pull_request.number }}
override_commit: ${{ github.event.pull_request.merge_commit_sha }}
override_branch: "refs/heads/master"
32 changes: 32 additions & 0 deletions .github/workflows/script.d/test-coverage.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#!/bin/bash

MODE=set
PROFILE_OUT="${PWD}/profile.out"
ACC_OUT="${PWD}/coverage.txt"

testCover() {
# set the return value to 0 (successful)
retval=0
# get the directory to check from the parameter. Default to '.'
d=${1:-.}
# skip if there are no Go files here
ls $d/*.go &> /dev/null || return $retval
# switch to the directory to check
pushd $d > /dev/null
# create the coverage profile
coverageresult=$(go test $TAGS -coverprofile="${PROFILE_OUT}" -covermode=${MODE})
# output the result so we can check the shell output
echo ${coverageresult}
# append the results to acc.out if coverage didn't fail, else set the retval to 1 (failed)
( [[ ${coverageresult} == *FAIL* ]] && retval=1 ) || ( [ -f "${PROFILE_OUT}" ] && grep -v "mode: ${MODE}" "${PROFILE_OUT}" >> "${ACC_OUT}" )
# return to our working dir
popd > /dev/null
# return our return value
return $retval
}

# Init coverage.txt
echo "mode: ${MODE}" > $ACC_OUT

# Run test coverage on all directories containing go files except testlapack, testblas, testgraph and testrand.
find . -type d -not -path '*testlapack*' -and -not -path '*testblas*' -and -not -path '*testgraph*' -and -not -path '*testrand*' | while read d; do testCover $d || exit; done
10 changes: 10 additions & 0 deletions .github/workflows/script.d/test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash

# Travis clobbers GOARCH env vars so this is necessary here.
if [[ -n $FORCE_GOARCH ]]; then
export GOARCH=$FORCE_GOARCH
fi

go get -d -v ./...
go build -v ./...
go test $TAGS -v ./...
1 change: 0 additions & 1 deletion .travis/deps.d/linux/01-deps.sh

This file was deleted.

1 change: 0 additions & 1 deletion .travis/deps.d/osx/nothing.sh

This file was deleted.

1 change: 0 additions & 1 deletion .travis/deps.d/windows/nothing.sh

This file was deleted.

21 changes: 0 additions & 21 deletions .travis/run-parts

This file was deleted.

1 change: 0 additions & 1 deletion .travis/run.d/linux/01-check-copyright.sh

This file was deleted.

1 change: 0 additions & 1 deletion .travis/run.d/linux/02-check-imports.sh

This file was deleted.

1 change: 0 additions & 1 deletion .travis/run.d/linux/03-check-formatting.sh

This file was deleted.

1 change: 0 additions & 1 deletion .travis/run.d/linux/04-test.sh

This file was deleted.

1 change: 0 additions & 1 deletion .travis/run.d/linux/05-test-coverage.sh

This file was deleted.

1 change: 0 additions & 1 deletion .travis/run.d/linux/06-check-generate.sh

This file was deleted.

1 change: 0 additions & 1 deletion .travis/run.d/osx/01-test.sh

This file was deleted.

10 changes: 0 additions & 10 deletions .travis/run.d/windows/01-test.sh

This file was deleted.

4 changes: 0 additions & 4 deletions .travis/script.d/check-copyright.sh

This file was deleted.

8 changes: 0 additions & 8 deletions .travis/script.d/check-formatting.sh

This file was deleted.

13 changes: 0 additions & 13 deletions .travis/script.d/check-generate.sh

This file was deleted.

4 changes: 0 additions & 4 deletions .travis/script.d/check-imports.sh

This file was deleted.

13 changes: 0 additions & 13 deletions .travis/script.d/deps.sh

This file was deleted.

1 change: 0 additions & 1 deletion .travis/script.d/nothing.sh

This file was deleted.

42 changes: 0 additions & 42 deletions .travis/script.d/test-coverage.sh

This file was deleted.

8 changes: 0 additions & 8 deletions .travis/script.d/test.sh

This file was deleted.

2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module gonum.org/v1/exp

go 1.19
go 1.23.0

require (
golang.org/x/exp v0.0.0-20240823005443-9b4947da3948
Expand Down
Loading