The old system with vendor/ and git submodules worked great, unfortunately FUD around git submodules seemed to scare people away and golang moved to a go.mod system that adds a new lock file format instead of using the built-in git version. It's now almost impossible to use modern golang without this, so we've switched. So much for the golang compatibility promise-- turns out it doesn't apply to the useful parts that I actually care about like this. Thanks to frebib for his incredibly valuable contributions to this patch. This snide commit message is mine alone. This patch also mixes in some changes due to legacy golang as we've also bumped the minimum version to 1.16 in the docs and tests. Lastly, we had to disable some tests and fix up a few other misc things to get this passing. We've definitely hot bugs in the go.mod system, and our Makefile tries to workaround those.
70 lines
1.9 KiB
YAML
70 lines
1.9 KiB
YAML
# Docs: https://help.github.com/en/articles/workflow-syntax-for-github-actions
|
|
|
|
# If the name is omitted, it uses the filename instead.
|
|
#name: Test
|
|
on:
|
|
# Run on all pull requests.
|
|
pull_request:
|
|
#branches:
|
|
#- master
|
|
# Run on all pushes.
|
|
push:
|
|
# Run daily at 4am.
|
|
schedule:
|
|
- cron: 0 4 * * *
|
|
|
|
jobs:
|
|
maketest:
|
|
name: Test (${{ matrix.test_block }}) on ${{ matrix.os }} with golang ${{ matrix.golang_version }}
|
|
runs-on: ${{ matrix.os }}
|
|
env:
|
|
GOPATH: /home/runner/work/mgmt/mgmt/go
|
|
strategy:
|
|
matrix:
|
|
# TODO: Add tip when it's supported: https://github.com/actions/setup-go/issues/21
|
|
os:
|
|
- ubuntu-latest
|
|
# macos tests are currently failing in CI
|
|
#- macos-latest
|
|
golang_version:
|
|
# TODO: add 1.17.x and tip
|
|
# minimum required and latest published go_version
|
|
- 1.16
|
|
test_block:
|
|
- basic
|
|
- shell
|
|
- race
|
|
#fail-fast: false
|
|
|
|
steps:
|
|
# Do not shallow fetch, will fail when building bindata/
|
|
# The path can't be absolute, so we need to move it to the
|
|
# expected location later.
|
|
- name: Clone mgmt
|
|
uses: actions/checkout@v2
|
|
with:
|
|
submodules: recursive
|
|
fetch-depth: 0
|
|
path: ./go/src/github.com/purpleidea/mgmt
|
|
|
|
- name: Install Go ${{ matrix.golang_version }}
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: ${{ matrix.golang_version }}
|
|
|
|
# Install & configure ruby, fixes gem permissions error
|
|
- name: Install Ruby
|
|
uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: head
|
|
|
|
- name: Install dependencies
|
|
working-directory: ./go/src/github.com/purpleidea/mgmt
|
|
run: |
|
|
make deps
|
|
|
|
- name: Run test
|
|
working-directory: ./go/src/github.com/purpleidea/mgmt
|
|
run: |
|
|
TEST_BLOCK="${{ matrix.test_block }}" make test
|