Skip to content

Commit

Permalink
chore: test ci
Browse files Browse the repository at this point in the history
test ci.

Signed-off-by: Noel Georgi <git@frezbo.dev>
  • Loading branch information
frezbo committed Nov 14, 2023
1 parent 4cb8b26 commit 70b86cc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 133 deletions.
139 changes: 7 additions & 132 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,76 +31,15 @@ jobs:
if: (!startsWith(github.head_ref, 'renovate/') && !startsWith(github.head_ref, 'dependabot/'))
outputs:
labels: ${{ steps.retrieve-pr-labels.outputs.result }}
services:
buildkitd:
image: moby/buildkit:v0.12.3
options: --privileged
ports:
- 1234:1234
volumes:
- /var/lib/buildkit/${{ github.repository }}:/var/lib/buildkit
- /usr/etc/buildkit/buildkitd.toml:/etc/buildkit/buildkitd.toml
steps:
- name: checkout
uses: actions/checkout@v4
- name: Unshallow
run: |
git fetch --prune --unshallow
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
driver: remote
endpoint: tcp://localhost:1234
- name: base
run: |
make base
- name: unit-tests
run: |
make unit-tests
- name: unit-tests-race
run: |
make unit-tests-race
- name: coverage
run: |
make coverage
- name: roller-derby
run: |
make roller-derby
- name: lint
run: |
make lint
- name: Login to registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
password: ${{ secrets.GITHUB_TOKEN }}
registry: ghcr.io
username: ${{ github.repository_owner }}
- name: image-roller-derby
run: |
make image-roller-derby
- name: push-roller-derby
if: github.event_name != 'pull_request'
env:
PLATFORM: linux/amd64,linux/arm64
PUSH: "true"
run: |
make image-roller-derby
- name: push-roller-derby-latest
if: github.event_name != 'pull_request'
env:
PLATFORM: linux/amd64,linux/arm64
PUSH: "true"
run: |
make image-roller-derby TAG=latest
- name: dummy
run: |
make dummy
- name: Retrieve PR labels
id: retrieve-pr-labels
if: github.event_name == 'pull_request' && always()
uses: actions/github-script@v6
with:
# result-encoding: string
retries: "3"
script: |
const resp = await github.rest.issues.get({
Expand All @@ -109,80 +48,16 @@ jobs:
repo: context.repo.repo,
})
return resp.data.labels
- name: Generate Checksums
if: startsWith(github.ref, 'refs/tags/')
run: |
sha256sum _out/roller-derby-* > _out/sha256sum.txt
sha512sum _out/roller-derby-* > _out/sha512sum.txt
- name: release-notes
if: startsWith(github.ref, 'refs/tags/')
run: |
make release-notes
- name: Release
if: startsWith(github.ref, 'refs/tags/')
uses: crazy-max/ghaction-github-release@v2
with:
body_path: _out/RELEASE_NOTES.md
draft: "true"
files: |-
_out/roller-derby-*
_out/sha*.txt
const labels = resp.data.labels.map(label => label.name)
return labels
dummy:
runs-on:
- self-hosted
if: contains(needs.default.outputs.labels, 'integration/e2e') || contains(needs.default.outputs.labels, 'integration/dummy')
# if: contains(needs.default.outputs.labels, 'integration/e2e') || contains(needs.default.outputs.labels, 'integration/dummy')
needs:
- default
services:
buildkitd:
image: moby/buildkit:v0.12.3
options: --privileged
ports:
- 1234:1234
volumes:
- /var/lib/buildkit/${{ github.repository }}:/var/lib/buildkit
- /usr/etc/buildkit/buildkitd.toml:/etc/buildkit/buildkitd.toml
steps:
- name: checkout
uses: actions/checkout@v4
- name: Unshallow
run: |
git fetch --prune --unshallow
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
driver: remote
endpoint: tcp://localhost:1234
- name: dummy
run: |
make dummy
dummy-a:
runs-on:
- self-hosted
if: contains(needs.default.outputs.labels, 'integration/e2e') || contains(needs.default.outputs.labels, 'integration/dummy-a')
needs:
- default
services:
buildkitd:
image: moby/buildkit:v0.12.3
options: --privileged
ports:
- 1234:1234
volumes:
- /var/lib/buildkit/${{ github.repository }}:/var/lib/buildkit
- /usr/etc/buildkit/buildkitd.toml:/etc/buildkit/buildkitd.toml
steps:
- name: checkout
uses: actions/checkout@v4
- name: Unshallow
run: |
git fetch --prune --unshallow
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
driver: remote
endpoint: tcp://localhost:1234
- name: dummy
- name: echo
run: |
make dummy
echo '${{ contains(fromJSON(needs.default.outputs.labels), 'integration/e2e') }}'
2 changes: 1 addition & 1 deletion testfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
add very important data.
adds very important data.

0 comments on commit 70b86cc

Please sign in to comment.