Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 3 additions & 2 deletions .github/workflows/concurrent-interface-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ jobs:
name: concurrent-interface-cd
if: |
github.event.pull_request.merged &&
startsWith(github.event.pull_request.title, '[CD]') != true &&
github.event.pull_request.user.login != 'github-actions'
endsWith(github.event.pull_request.title, '/workflows/publish')
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
Expand Down Expand Up @@ -42,6 +41,8 @@ jobs:
- name: Deploy
run: yarn deploy
working-directory: ./interface
env:
POLYWRAP_WRAPSCAN_AUTH_HEADER_PROD: ${{secrets.POLYWRAP_WRAPSCAN_AUTH_HEADER_PROD}}

- name: PR New URI
uses: peter-evans/create-pull-request@v3
Expand Down
11 changes: 11 additions & 0 deletions interface/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Concurrent Wrapper Interface

The concurrent interface provides a common concurrency interface that can be shared across various concurrency implementations, like Threads, Processes and even language specific primitives like JavaScript Promises.

## Implementations

Example implementations of this interface can be found in the [Concurrent Wrap repository](https://github.com/polywrap/concurrent).

## Support

For any questions or problems related to this wrap or Polywrap at large, please visit our [Discord](https://discord.polywrap.io).
11 changes: 11 additions & 0 deletions interface/build/docs/pages/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Concurrent Wrapper Interface

The concurrent interface provides a common concurrency interface that can be shared across various concurrency implementations, like Threads, Processes and even language specific primitives like JavaScript Promises.

## Implementations

Example implementations of this interface can be found in the [Concurrent Wrap repository](https://github.com/polywrap/concurrent).

## Support

For any questions or problems related to this wrap or Polywrap at large, please visit our [Discord](https://discord.polywrap.io).
1 change: 1 addition & 0 deletions interface/build/docs/polywrap.docs.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"format":"0.1.0","description":"Concurrent interface","website":"https://polywrap.io","repository":"https://github.com/polywrap/concurrent","readme":"pages/README.md"}
Binary file modified interface/build/wrap.info
Binary file not shown.
6 changes: 2 additions & 4 deletions interface/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
{
"name": "@polywrap/concurrent-interface",
"description": "Concurrent interface",
"name": "concurrent",
"private": true,
"version": "0.10.0",
"scripts": {
"build": "npx polywrap build",
"deploy": "npx polywrap deploy -o ./deployment.json"
},
"devDependencies": {
"polywrap": "0.10.2"
"polywrap": "0.11.0-pre.4"
}
}
23 changes: 17 additions & 6 deletions interface/polywrap.deploy.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
format: 0.1.0
stages:
format: 0.4.0
primaryJobName: ipfs_deploy
jobs:
ipfs_deploy:
package: ipfs
uri: fs/./build
config:
gatewayUri: https://ipfs.wrappers.io
steps:
- name: ipfs_deploy
package: ipfs
uri: fs/./build
config:
gatewayUri: https://ipfs.wrappers.io
- name: http_deploy
package: http
uri: $$ipfs_deploy
config:
postUrl: https://wraps.wrapscan.io/r/polywrap/concurrent@1.0.0
headers:
- name: Authorization
value: $POLYWRAP_WRAPSCAN_AUTH_HEADER_PROD
5 changes: 5 additions & 0 deletions interface/polywrap.docs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
format: 0.1.0
description: Concurrent interface
website: https://polywrap.io
repository: https://github.com/polywrap/concurrent
readme: ./README.md
7 changes: 4 additions & 3 deletions interface/polywrap.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
format: 0.3.0
format: 0.5.0
project:
name: concurrent-interface
name: concurrent
type: interface
source:
schema: ./polywrap.graphql
resources: ./resources
extensions:
docs: ./polywrap.docs.yaml
63 changes: 0 additions & 63 deletions interface/resources/README.md

This file was deleted.

Loading