aqua/.github/workflows/snapshot.yml

281 lines
7.7 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"
2022-12-28 08:30:42 +00:00
value: ${{ jobs.aqua.outputs.version }}
aqua-lsp-api-version:
description: "@fluencelabs/aqua-language-server-api version"
value: ${{ jobs.aqua-lsp-api.outputs.version }}
aqua-api-version:
description: "@fluencelabs/aqua-api version"
value: ${{ jobs.aqua-api.outputs.version }}
env:
FORCE_COLOR: true
jobs:
compile:
name: "Compile"
runs-on: ubuntu-latest
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
2022-12-28 08:30:42 +00:00
- name: JS build
env:
BUILD_NUMBER: ${{ steps.version.outputs.id }}
run: sbt cliJS/fastOptJS
- name: JS LSP API build
env:
2022-12-28 08:30:42 +00:00
BUILD_NUMBER: ${{ steps.version.outputs.id }}
run: sbt language-server-api/fastOptJS
- name: JS Aqua API build
env:
BUILD_NUMBER: ${{ steps.version.outputs.id }}
run: sbt aqua-api/fastOptJS
- name: Upload aqua-js artifact
uses: actions/upload-artifact@v3
with:
name: aqua-js
path: cli/cli/.js/target/scala-*/cli-fastopt.js
- name: Upload aqua-js-lsp artifact
uses: actions/upload-artifact@v3
with:
name: aqua-js-lsp
path: language-server/language-server-api/target/scala-*/language-server-api-fastopt.js
2022-12-28 08:30:42 +00:00
- name: Upload aqua-js-api artifact
uses: actions/upload-artifact@v3
with:
2022-12-28 08:30:42 +00:00
name: aqua-js-api
path: api/aqua-api/target/scala-*/aqua-api-fastopt.js
2022-12-28 08:30:42 +00:00
aqua:
name: "Publish @fluencelabs/aqua"
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 }}
2022-12-28 08:30:42 +00:00
- name: Download aqua-js artifact
uses: actions/download-artifact@v3
with:
2022-12-28 08:30:42 +00:00
name: aqua-js
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-lsp:
name: "Publish @fluencelabs/aqua-language-server-api"
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-js-lsp artifact
uses: actions/download-artifact@v3
with:
name: aqua-js-lsp
- run: mv scala-*/language-server-api-fastopt.js language-server/language-server-npm/aqua-lsp-api.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"
cache-dependency-path: "language-server/language-server-npm/package-lock.json"
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 }}
aqua-api:
name: "Publish @fluencelabs/aqua-api"
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-js artifact
uses: actions/download-artifact@v3
with:
name: aqua-js-api
- run: mv scala-*/aqua-api-fastopt.js api/aqua-api-npm/aqua-api.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"
cache-dependency-path: "api/aqua-api-npm/package-lock.json"
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 }}
- 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:
2022-12-28 08:30:42 +00:00
working-directory: api/aqua-api-npm
id: ${{ steps.version.outputs.id }}