-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #74 from atc0005/i66-use-docker-based-ghaws
Add Docker-based GitHub Actions Workflows
- Loading branch information
Showing
5 changed files
with
172 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,79 +11,75 @@ name: Validate Codebase | |
# `synchronized` seems to equate to pushing new commits to a linked branch | ||
# (whether force-pushed or not) | ||
on: | ||
#push: | ||
pull_request: | ||
types: [opened, synchronize] | ||
|
||
jobs: | ||
lint_and_build_code: | ||
name: Lint and Build codebase | ||
runs-on: ${{ matrix.os }} | ||
# Default: 360 minutes | ||
lint_code: | ||
name: Lint codebase | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
container: | ||
image: index.docker.io/atc0005/go-ci:go-ci-lint-only | ||
|
||
steps: | ||
- name: Check out code | ||
uses: actions/[email protected] | ||
|
||
- name: Remove repo-provided golangci-lint config file | ||
run: | | ||
# Remove the copy of the config file bundled with the repo/code so | ||
# that the configuration provided by the atc0005/go-ci project is | ||
# used instead | ||
rm -vf .golangci.yml | ||
- name: Run golangci-lint using container-provided config file settings | ||
run: golangci-lint run -v | ||
|
||
# This is the very latest stable version of staticcheck provided by the | ||
# atc0005/go-ci container. The version included with golangci-lint often | ||
# lags behind the official stable releases. | ||
- name: Run staticcheck | ||
run: staticcheck $(go list -mod=vendor ./... | grep -v /vendor/) | ||
|
||
test_code: | ||
name: Run tests | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
strategy: | ||
matrix: | ||
# Supported versions of Go | ||
go-version: [1.13.x, 1.14.x] | ||
container-image: ["go-ci-oldstable", "go-ci-stable", "go-ci-unstable"] | ||
|
||
# Supported LTS and latest version of Ubuntu Linux | ||
#os: [ubuntu-16.04, ubuntu-18.04, ubuntu-latest] | ||
|
||
# This should be good enough until we learn otherwise | ||
os: [ubuntu-latest] | ||
container: | ||
image: "index.docker.io/atc0005/go-ci:${{ matrix.container-image}}" | ||
|
||
steps: | ||
- name: Set up Go | ||
# https://github.com/actions/setup-go | ||
uses: actions/[email protected] | ||
with: | ||
go-version: ${{ matrix.go-version }} | ||
id: go | ||
|
||
# This could prove useful if we need to troubleshoot odd results and | ||
# tie them back to a specific version of Go | ||
- name: Print go version | ||
run: | | ||
go version | ||
- name: Check out code into the Go module directory | ||
- name: Check out code | ||
uses: actions/[email protected] | ||
|
||
# NOTE: Disabled in favor of top-level `vendor` folder | ||
# | ||
# - name: Get dependencies | ||
# run: | | ||
# go get -v -t -d ./... | ||
|
||
# Force tests to run early as it isn't worth doing much else if the | ||
# tests fail to run properly. | ||
# Note: The `vendor` top-level folder appears to be skipped by default. | ||
- name: Run all tests | ||
run: go test -mod=vendor -v ./... | ||
|
||
- name: Install Go linting tools | ||
run: | | ||
# add executables installed with go get to PATH | ||
# TODO: this will hopefully be fixed by | ||
# https://github.com/actions/setup-go/issues/14 | ||
export PATH=${PATH}:$(go env GOPATH)/bin | ||
make lintinstall | ||
build_code: | ||
name: Build codebase | ||
runs-on: ubuntu-latest | ||
# Default: 360 minutes | ||
timeout-minutes: 10 | ||
strategy: | ||
matrix: | ||
container-image: ["go-ci-oldstable", "go-ci-stable", "go-ci-unstable"] | ||
|
||
container: | ||
image: "index.docker.io/atc0005/go-ci:${{ matrix.container-image}}" | ||
|
||
steps: | ||
- name: Print go version | ||
run: go version | ||
|
||
- name: Install Ubuntu packages | ||
if: contains(matrix.os, 'ubuntu') | ||
run: sudo apt update && sudo apt install -y --no-install-recommends make gcc | ||
- name: Check out code | ||
uses: actions/[email protected] | ||
|
||
- name: Run Go linting tools using project Makefile | ||
- name: Build using vendored dependencies | ||
run: | | ||
# add executables installed with go get to PATH | ||
# TODO: this will hopefully be fixed by | ||
# https://github.com/actions/setup-go/issues/14 | ||
export PATH=${PATH}:$(go env GOPATH)/bin | ||
make linting | ||
- name: Build with (mostly) default options | ||
# Note: We use the `-mod=vendor` flag to explicitly request that our | ||
# top-level vendor folder be used instead of fetching remote packages | ||
run: go build -v -mod=vendor ./cmd/check_imap_mailbox | ||
|
||
- name: Build using project Makefile | ||
run: make all | ||
go build -v -mod=vendor ./cmd/check_imap_mailbox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
# Copyright 2020 Adam Chalkley | ||
# | ||
# https://github.com/atc0005/check-mail | ||
# | ||
# Licensed under the MIT License. See LICENSE file in the project root for | ||
# full license information. | ||
|
||
name: Lint and Build using Makefile | ||
|
||
# Run builds for Pull Requests (new, updated) | ||
# `synchronized` seems to equate to pushing new commits to a linked branch | ||
# (whether force-pushed or not) | ||
on: | ||
#push: | ||
pull_request: | ||
types: [opened, synchronize] | ||
|
||
jobs: | ||
lint_code_with_makefile: | ||
name: Lint codebase using Makefile | ||
runs-on: ubuntu-latest | ||
# Default: 360 minutes | ||
timeout-minutes: 10 | ||
container: | ||
image: "index.docker.io/golang:latest" | ||
|
||
steps: | ||
- name: Print go version | ||
run: go version | ||
|
||
- name: Check out code into the Go module directory | ||
uses: actions/[email protected] | ||
|
||
# bsdmainutils provides "column" which is used by the Makefile | ||
- name: Install Ubuntu packages | ||
run: apt-get update && apt-get install -y --no-install-recommends make gcc bsdmainutils | ||
|
||
- name: Install Go linting tools | ||
run: make lintinstall | ||
|
||
# NOTE: We are intentionally *not* removing the repo-provided config | ||
# file (per GH-281) as this workflow is intended to emulate running the | ||
# Makefile via a local dev environment. | ||
# | ||
# - name: Remove repo-provided golangci-lint config file | ||
# run: | | ||
# # Remove the copy of the config file bundled with the repo/code so | ||
# # that the configuration provided by the atc0005/go-ci project is | ||
# # used instead | ||
# rm -vf .golangci.yml | ||
|
||
- name: Run Go linting tools using project Makefile | ||
run: make linting | ||
|
||
build_code_with_makefile: | ||
name: Build codebase using Makefile | ||
runs-on: ubuntu-latest | ||
# Default: 360 minutes | ||
timeout-minutes: 10 | ||
container: | ||
image: "index.docker.io/golang:latest" | ||
|
||
steps: | ||
- name: Print go version | ||
run: go version | ||
|
||
- name: Check out code into the Go module directory | ||
uses: actions/[email protected] | ||
|
||
# bsdmainutils provides "column" which is used by the Makefile | ||
- name: Install Ubuntu packages | ||
run: apt-get update && apt-get install -y --no-install-recommends make gcc bsdmainutils | ||
|
||
- name: Build using project Makefile | ||
run: make all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Copyright 2020 Adam Chalkley | ||
# | ||
# https://github.com/atc0005/check-mail | ||
# | ||
# Licensed under the MIT License. See LICENSE file in the project root for | ||
# full license information. | ||
|
||
name: Quick Validation | ||
|
||
# Run builds for Pull Requests (new, updated) | ||
# `synchronized` seems to equate to pushing new commits to a linked branch | ||
# (whether force-pushed or not) | ||
on: | ||
push: | ||
|
||
jobs: | ||
lint_and_test_code: | ||
name: Lint and test using latest stable container | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
container: | ||
image: index.docker.io/atc0005/go-ci:go-ci-lint-only | ||
|
||
steps: | ||
- name: Check out code | ||
uses: actions/[email protected] | ||
|
||
- name: Remove repo-provided golangci-lint config file | ||
run: | | ||
# Remove the copy of the config file bundled with the repo/code so | ||
# that the configuration provided by the atc0005/go-ci project is | ||
# used instead | ||
rm -vf .golangci.yml | ||
- name: Run golangci-lint using container-provided config file settings | ||
run: golangci-lint run -v | ||
|
||
- name: Run all tests | ||
run: go test -mod=vendor -v ./... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
#!/bin/bash | ||
|
||
# Copyright 2020 Adam Chalkley | ||
# | ||
# https://github.com/atc0005/check-mail | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters