aqua/.github/workflows/snapshot.yml

283 lines
7.6 KiB
YAML
Raw Normal View History

2022-12-28 08:30:42 +00:00
name: Publish snapshots
on:
workflow_call:
inputs:
fluence-js-version:
description: "@fluencejs/fluence version"
type: string
default: "null"
ref:
description: "git ref to checkout to"
type: string
default: "main"
outputs:
aqua-version:
description: "@fluencelabs/aqua version"
value: ${{ jobs.aqua-cli.outputs.version }}
aqua-lsp-version:
2022-12-28 08:30:42 +00:00
description: "@fluencelabs/aqua-language-server-api version"
value: ${{ jobs.aqua-lsp.outputs.version }}
2022-12-28 08:30:42 +00:00
aqua-api-version:
description: "@fluencelabs/aqua-api version"
value: ${{ jobs.aqua-api.outputs.version }}
env:
FORCE_COLOR: true
jobs:
compile:
name: "Compile"
runs-on: builder
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
repository: fluencelabs/aqua
2022-12-19 04:27:42 +00:00
ref: ${{ inputs.ref }}
2022-12-28 08:30:42 +00:00
- name: Generate snapshot version
id: version
2022-12-28 08:30:42 +00:00
uses: fluencelabs/github-actions/generate-snapshot-id@main
- name: Cache Scala
uses: coursier/cache-action@v6
- name: Setup Scala
uses: coursier/setup-action@v1
with:
apps: sbt
- name: JS CLI build
2022-12-28 08:30:42 +00:00
env:
SNAPSHOT: ${{ steps.version.outputs.id }}
2022-12-28 08:30:42 +00:00
run: sbt cliJS/fastOptJS
- name: JS LSP build
env:
SNAPSHOT: ${{ steps.version.outputs.id }}
2022-12-28 08:30:42 +00:00
run: sbt language-server-api/fastOptJS
- name: JS API build
2022-12-28 08:30:42 +00:00
env:
SNAPSHOT: ${{ steps.version.outputs.id }}
2022-12-28 08:30:42 +00:00
run: sbt aqua-api/fastOptJS
- name: Upload aqua-cli artifact
2022-12-28 08:30:42 +00:00
uses: actions/upload-artifact@v3
with:
name: aqua-cli
2022-12-28 08:30:42 +00:00
path: cli/cli/.js/target/scala-*/cli-fastopt.js
- name: Upload aqua-api artifact
2022-12-28 08:30:42 +00:00
uses: actions/upload-artifact@v3
with:
name: aqua-api
path: api/aqua-api/target/scala-*/aqua-api-fastopt.js
- name: Upload aqua-lsp artifact
uses: actions/upload-artifact@v3
with:
name: aqua-lsp
path: language-server/language-server-api/target/scala-*/language-server-api-fastopt.js
aqua-cli:
name: "Publish aqua-cli"
runs-on: ubuntu-latest
needs: compile
outputs:
2022-12-28 08:30:42 +00:00
version: "${{ steps.snapshot.outputs.version }}"
permissions:
contents: read
id-token: write
steps:
2022-12-28 08:30:42 +00:00
- name: Checkout repository
uses: actions/checkout@v3
with:
repository: fluencelabs/aqua
ref: ${{ inputs.ref }}
- name: Download aqua-cli artifact
uses: actions/download-artifact@v3
with:
name: aqua-cli
2022-12-28 08:30:42 +00:00
- run: mv scala-*/cli-fastopt.js cli/cli-npm/aqua.js
- name: Import secrets
uses: hashicorp/vault-action@v2.4.3
with:
url: https://vault.fluence.dev
path: jwt/github
role: ci
method: jwt
jwtGithubAudience: "https://github.com/fluencelabs"
jwtTtl: 300
exportToken: false
secrets: |
kv/npm-registry/basicauth/ci token | NODE_AUTH_TOKEN
- name: Setup node with self-hosted npm registry
uses: actions/setup-node@v3
with:
node-version: "16"
registry-url: "https://npm.fluence.dev"
2022-12-28 08:30:42 +00:00
cache-dependency-path: "cli/cli-npm/package-lock.json"
cache: "npm"
- run: npm i
2022-12-28 08:30:42 +00:00
working-directory: cli/cli-npm
- name: Set fluence-js version from branch
if: inputs.fluence-js-version != 'null'
2022-12-28 08:30:42 +00:00
working-directory: cli/cli-npm
run: npm i --save -E @fluencelabs/fluence@${{ inputs.fluence-js-version }}
- run: npm run build
2022-12-28 08:30:42 +00:00
working-directory: cli/cli-npm
- name: Generate snapshot version
id: version
uses: fluencelabs/github-actions/generate-snapshot-id@main
- name: Publish snapshot
id: snapshot
uses: fluencelabs/github-actions/npm-publish-snapshot@main
with:
working-directory: cli/cli-npm
id: ${{ steps.version.outputs.id }}
aqua-api:
name: "Publish aqua-api"
2022-12-28 08:30:42 +00:00
runs-on: ubuntu-latest
needs: compile
outputs:
version: "${{ steps.snapshot.outputs.version }}"
permissions:
contents: read
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
repository: fluencelabs/aqua
ref: ${{ inputs.ref }}
2022-12-28 08:30:42 +00:00
- name: Download aqua-api artifact
2022-12-28 08:30:42 +00:00
uses: actions/download-artifact@v3
with:
name: aqua-api
2022-12-28 08:30:42 +00:00
- run: mv scala-*/aqua-api-fastopt.js api/aqua-api-npm/aqua-api.js
2022-12-28 08:30:42 +00:00
- name: Import secrets
uses: hashicorp/vault-action@v2.4.3
with:
url: https://vault.fluence.dev
path: jwt/github
role: ci
method: jwt
jwtGithubAudience: "https://github.com/fluencelabs"
jwtTtl: 300
exportToken: false
secrets: |
kv/npm-registry/basicauth/ci token | NODE_AUTH_TOKEN
- name: Setup node with self-hosted npm registry
uses: actions/setup-node@v3
with:
node-version: "16"
registry-url: "https://npm.fluence.dev"
cache-dependency-path: "api/aqua-api-npm/package-lock.json"
2022-12-28 08:30:42 +00:00
cache: "npm"
- run: npm i
working-directory: api/aqua-api-npm
- name: Set fluence-js version from branch
if: inputs.fluence-js-version != 'null'
working-directory: cli/cli-npm
run: npm i --save-dev -E @fluencelabs/fluence@${{ inputs.fluence-js-version }}
2022-12-28 08:30:42 +00:00
- name: Generate snapshot version
id: version
uses: fluencelabs/github-actions/generate-snapshot-id@main
- name: Publish snapshot
id: snapshot
uses: fluencelabs/github-actions/npm-publish-snapshot@main
with:
working-directory: api/aqua-api-npm
2022-12-28 08:30:42 +00:00
id: ${{ steps.version.outputs.id }}
aqua-lsp:
name: "Publish aqua-lsp"
2022-12-28 08:30:42 +00:00
runs-on: ubuntu-latest
needs: compile
outputs:
version: "${{ steps.snapshot.outputs.version }}"
permissions:
contents: read
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
repository: fluencelabs/aqua
ref: ${{ inputs.ref }}
2022-12-28 08:30:42 +00:00
- name: Download aqua-lsp artifact
2022-12-28 08:30:42 +00:00
uses: actions/download-artifact@v3
with:
name: aqua-lsp
2022-12-28 08:30:42 +00:00
- run: mv scala-*/language-server-api-fastopt.js language-server/language-server-npm/aqua-lsp-api.js
2022-12-28 08:30:42 +00:00
- name: Import secrets
uses: hashicorp/vault-action@v2.4.3
with:
url: https://vault.fluence.dev
path: jwt/github
role: ci
method: jwt
jwtGithubAudience: "https://github.com/fluencelabs"
jwtTtl: 300
exportToken: false
secrets: |
kv/npm-registry/basicauth/ci token | NODE_AUTH_TOKEN
- name: Setup node with self-hosted npm registry
uses: actions/setup-node@v3
with:
node-version: "16"
registry-url: "https://npm.fluence.dev"
cache-dependency-path: "language-server/language-server-npm/package-lock.json"
2022-12-28 08:30:42 +00:00
cache: "npm"
- run: npm i
working-directory: language-server/language-server-npm
- name: Generate snapshot version
id: version
uses: fluencelabs/github-actions/generate-snapshot-id@main
- name: Publish snapshot
id: snapshot
uses: fluencelabs/github-actions/npm-publish-snapshot@main
with:
working-directory: language-server/language-server-npm
id: ${{ steps.version.outputs.id }}