Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: sync with the main branch + CredentialDefinition adoption for MT. Signed-off-by: Yurii Shynbuiev [email protected] #695

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
c61999d
fix(prism-agent): invitation expiry configuration and new state (#655)
mineme0110 Aug 28, 2023
99e338a
feat: add anoncreds credential definition rest api (#624)
CryptoKnightIOG Aug 30, 2023
b3c0bae
docs: update readme, dco, contribution guidelines [skip ci] (#654)
Aug 30, 2023
24284f8
ci: add test container image and automation (#664)
Aug 30, 2023
4497dc1
ci: fix tags in push test ci image [skip ci] (#665)
Aug 30, 2023
7947bad
docs: fix links in readme for dco and contributing [skip ci] (#666)
Aug 30, 2023
a10e7a4
docs: fix links in contribution guide [skip ci] (#668)
Aug 30, 2023
b6a1929
ci: remove disabled unused workflows [skip ci] (#675)
Aug 31, 2023
7df61c4
chore(release): cut atala prism 1.12.0 release
atala-dev Aug 31, 2023
95c6185
docs: add adr placeholders [skip ci] (#508)
Aug 31, 2023
f1cb5d8
chore(prism-agent): use the agent endpoint declarations in Tapir2Stat…
bvoiturier Aug 31, 2023
9426e7f
fix: correct vault path (#678)
CryptoKnightIOG Aug 31, 2023
3d479b9
fix: CredentialOffer not following spec (#569)
FabioPinheiro Sep 1, 2023
fd417d9
fix(prism-agent): make resolve did representation content type work (…
Sep 1, 2023
a4b8f31
build: remove mediator from this repository (#680)
FabioPinheiro Sep 1, 2023
fad9b80
chore: fix security vulnerabilities in workflows and npm (#677)
Sep 1, 2023
c73b736
docs: remove internal handbook link from readme [skip ci] (#681)
Sep 1, 2023
6eec8ba
fix: indentation in apisixroute (#682)
milosbackonja Sep 1, 2023
d7c5e52
fix: another indentation in apisixroute (#683)
milosbackonja Sep 1, 2023
523fc6e
Merge remote-tracking branch 'origin/main' into feat/merge-main-2-mt-…
yshyn-iohk Sep 6, 2023
018fd11
Merge remote-tracking branch 'origin/feat/mt-walletapi-isolation' int…
yshyn-iohk Sep 7, 2023
ad4463e
feat: adopt CredentialDefinition to MT (merge the main into mt branch)
yshyn-iohk Sep 7, 2023
268c638
chore: run megalinter --fix
yshyn-iohk Sep 7, 2023
34a5680
fix: add MT to CredentialDefinitionRepositoryInMemory
yshyn-iohk Sep 7, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 0 additions & 29 deletions .github/disabled_workflows/castor.yml

This file was deleted.

29 changes: 0 additions & 29 deletions .github/disabled_workflows/connect.yml

This file was deleted.

30 changes: 0 additions & 30 deletions .github/disabled_workflows/iris-client.yml

This file was deleted.

36 changes: 0 additions & 36 deletions .github/disabled_workflows/iris-service.yml

This file was deleted.

36 changes: 0 additions & 36 deletions .github/disabled_workflows/mercury-mediator.yml

This file was deleted.

29 changes: 0 additions & 29 deletions .github/disabled_workflows/mercury.yml

This file was deleted.

29 changes: 0 additions & 29 deletions .github/disabled_workflows/pollux.yml

This file was deleted.

43 changes: 0 additions & 43 deletions .github/disabled_workflows/prism-agent.yml

This file was deleted.

30 changes: 0 additions & 30 deletions .github/disabled_workflows/prism-node-client.yml

This file was deleted.

25 changes: 25 additions & 0 deletions .github/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
FROM ubuntu:22.04

RUN apt-get update && \
apt-get install --no-install-recommends --yes \
git=1:2.* \
curl=7.* \
wget=1.21.* \
unzip=6.* \
zip=3.* \
jq=1.* \
python3=3.10.* \
python3-pip=22.* \
python3-setuptools=59.6.* \
python3-wheel=0.37.* \
gnupg=2.2.* \
default-jre=2:1.* \
build-essential=12.* && \
echo "deb https://repo.scala-sbt.org/scalasbt/debian all main" | tee /etc/apt/sources.list.d/sbt.list && \
echo "deb https://repo.scala-sbt.org/scalasbt/debian /" | tee /etc/apt/sources.list.d/sbt_old.list && \
curl -sL "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x2EE0EA64E40A89B84B2DF73499E82A75642AC823" | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/scalasbt-release.gpg --import && \
chmod 644 /etc/apt/trusted.gpg.d/scalasbt-release.gpg && \
apt-get --allow-releaseinfo-change update && \
apt-get install --no-install-recommends --yes \
sbt=1.4.* \
&& rm -rf /var/lib/apt/lists/*
60 changes: 60 additions & 0 deletions .github/workflows/build-test-docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: Build Test Docker image

on:
push:
branches: ["main"]
paths:
- ".github/docker/**"
- ".github/workflows/build-test-docker.yml"
pull_request:
paths:
- ".github/docker/**"
- ".github/workflows/build-test-docker.yml"

env:
REGISTRY: ghcr.io
IMAGE_NAME: agent-ci-ubuntu-22-jdk-11

jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Log in to the Container registry
uses: docker/login-action@v1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v3
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build Docker image
if: ${{ github.event_name == 'pull_request' }}
uses: docker/build-push-action@v2
with:
context: .github/docker
push: false
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

- name: Build and push Docker image
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
uses: docker/build-push-action@v2
with:
context: .github/docker
push: true
tags: |
"ghcr.io/input-output-hk/${{ env.IMAGE_NAME }}:latest"
"ghcr.io/input-output-hk/${{ env.IMAGE_NAME }}:main"
labels: ${{ steps.meta.outputs.labels }}
2 changes: 1 addition & 1 deletion .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
java-version: [email protected]

- name: Setup Gradle
uses: gradle/gradle-build-action@v2
uses: gradle/gradle-build-action@v2.8.0

- name: Install Python
uses: actions/setup-python@v2
Expand Down
Loading
Loading