deps: update module github.com/prometheus/client_model to v0.5.0 (#499) #1355
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
name: Unit Tests | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- "**.go" | |
- "**/go.mod" | |
pull_request: | |
paths: | |
- "**.go" | |
- "**/go.mod" | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
container: | |
image: ghcr.io/edgelesssys/edgelessrt-dev:ci | |
steps: | |
- name: Checkout | |
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 | |
- name: Test | |
run: ertgo test -race -count=3 ./... | |
- name: Setup | |
run: | | |
git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
mkdir build | |
- name: Build | |
run: | | |
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo .. | |
make | |
working-directory: build | |
- name: Integration test | |
run: ertgo test -tags integration -b ../build -s | |
working-directory: test | |
- name: Integration test (-noenclave) | |
run: ertgo test -tags integration -b ../build -noenclave | |
working-directory: test | |
- name: Build artifact | |
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3 | |
with: | |
name: marblerun | |
path: | | |
build/coordinator-enclave.signed | |
build/coordinator-noenclave | |
build/coordinator-era.json | |
build/premain-libos | |
build/marble-injector | |
build/marblerun | |
- name: Deploy coordinator:nightly | |
if: github.ref == 'refs/heads/master' && | |
github.event_name == 'push' | |
run: | | |
curl -X POST -H "Accept: application/vnd.github.v3+json" \ | |
-H "Authorization: token ${{ secrets.CI_GITHUB_REPOSITORY }}" \ | |
-d '{"event_type": "docker-build", | |
"client_payload":{"repository":"marblerun", | |
"sign":"nightly", | |
"imagename":"marblerun/coordinator-debug", | |
"tag":"nightly", | |
"file": "dockerfiles/Dockerfile.coordinator", | |
"args": "--build-arg erttag=master --build-arg mrtag=master", | |
"target":"release"}}' \ | |
https://api.github.com/repos/edgelesssys/deployment/dispatches | |
- name: Deploy marble-injector:nightly | |
if: github.ref == 'refs/heads/master' && | |
github.event_name == 'push' | |
run: | | |
curl -X POST -H "Accept: application/vnd.github.v3+json" \ | |
-H "Authorization: token ${{ secrets.CI_GITHUB_REPOSITORY }}" \ | |
-d '{"event_type": "docker-build", | |
"client_payload":{"repository":"marblerun", | |
"sign":"nightly", | |
"imagename":"marblerun/marble-injector", | |
"tag":"nightly", | |
"file": "dockerfiles/Dockerfile.marble-injector", | |
"target":"release"}}' \ | |
https://api.github.com/repos/edgelesssys/deployment/dispatches |