-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed pull request to run on github hosted runner without Docker, r…
…egular build to run on self-hosted runner with Docker
- Loading branch information
Showing
2 changed files
with
58 additions
and
5 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
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,56 @@ | ||
name: CI | ||
on: | ||
pull_request: | ||
branches: | ||
- "*" | ||
|
||
concurrency: | ||
# For PRs, later CI runs preempt previous ones. e.g. a force push on a PR | ||
# cancels running CI jobs and starts all new ones. | ||
# | ||
# For non-PR pushes, concurrency.group needs to be unique for every distinct | ||
# CI run we want to have happen. Use run_id, which in practice means all | ||
# non-PR CI runs will be allowed to run without preempting each other. | ||
group: ${{ github.workflow }}-$${{ github.pull_request.number || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-22.04 | ||
strategy: | ||
matrix: | ||
go-version: ["1.23.1"] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: ${{ matrix.go-version }} | ||
- name: Install dependencies | ||
run: go mod download | ||
- name: Unit and Integration test | ||
env: | ||
CL_INFOCLACE_SSH: ${{ secrets.CL_INFOCLACE_SSH }} | ||
CL_GITHUB_SECRET: ${{ secrets.CL_GITHUB_SECRET }} | ||
run: | | ||
export CL_HOME=`pwd` | ||
rm -rf internal/server/appspecs && cd internal/server | ||
git clone --single-branch --depth 1 https://github.com/claceio/appspecs.git | ||
rm -rf appspecs/.git | ||
cd $CL_HOME | ||
go install github.com/commander-cli/commander/v2/cmd/commander@latest | ||
export CL_CONTAINER_COMMANDS=disable # pull requests uses github runner, docker/podman does not run | ||
gmake covtest | ||
- name: Upload Go test results | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: Go-results-${{ matrix.go-version }} | ||
path: TestResults-${{ matrix.go-version }}.json | ||
|
||
- name: Upload results to Codecov | ||
uses: codecov/codecov-action@v4 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} |