2022-09-14 02:59:49 +00:00
|
|
|
name: Publish snapshot
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
fluence-js-version:
|
|
|
|
description: "@fluencejs/fluence version"
|
|
|
|
type: string
|
|
|
|
outputs:
|
|
|
|
aqua-version:
|
|
|
|
description: "@fluencelabs/aqua version"
|
|
|
|
value: ${{ jobs.publish-snapshot.outputs.aqua-version }}
|
|
|
|
|
|
|
|
env:
|
|
|
|
FORCE_COLOR: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
compile:
|
2022-09-14 14:36:16 +00:00
|
|
|
name: "Compile"
|
2022-09-14 02:59:49 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
repository: fluencelabs/aqua
|
|
|
|
|
2022-10-10 18:02:30 +00:00
|
|
|
- name: Generate version
|
|
|
|
id: version
|
|
|
|
run: |
|
|
|
|
SHA=${{ github.event.pull_request.head.sha }}
|
2022-10-31 14:51:37 +00:00
|
|
|
echo "sha=${SHA::7}" >> $GITHUB_OUTPUT
|
|
|
|
echo "branch=${GITHUB_HEAD_REF//[^a-zA-Z0-9-]/-}" >> $GITHUB_OUTPUT
|
2022-10-10 18:02:30 +00:00
|
|
|
|
2022-09-14 02:59:49 +00:00
|
|
|
- name: Cache Scala
|
|
|
|
uses: coursier/cache-action@v6
|
|
|
|
|
|
|
|
- name: Setup Scala
|
|
|
|
uses: coursier/setup-action@v1
|
|
|
|
|
|
|
|
- name: Compile aqua
|
2022-10-10 18:02:30 +00:00
|
|
|
env:
|
|
|
|
BUILD_NUMBER: ${{ steps.version.outputs.branch }}-${{ steps.version.outputs.sha }}-${{ github.run_number }}-${{ github.run_attempt }}
|
2022-09-14 02:59:49 +00:00
|
|
|
run: sbt "cliJS/fastOptJS"
|
|
|
|
|
|
|
|
- name: Upload compiled aqua
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: aqua
|
|
|
|
path: cli/.js/target/scala-*/cli-fastopt.js
|
|
|
|
|
|
|
|
publish-snapshot:
|
2022-09-14 14:36:16 +00:00
|
|
|
name: "Publish snapshot"
|
2022-09-14 02:59:49 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
needs: compile
|
|
|
|
|
|
|
|
outputs:
|
|
|
|
aqua-version: "${{ steps.build.outputs.version }}"
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
2022-09-14 14:36:16 +00:00
|
|
|
pull-requests: write
|
2022-09-14 02:59:49 +00:00
|
|
|
id-token: write
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout aqua
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
repository: fluencelabs/aqua
|
|
|
|
|
|
|
|
- name: Download compiled aqua
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: aqua
|
|
|
|
|
|
|
|
- run: mv scala-*/cli-fastopt.js npm/aqua.js
|
|
|
|
|
|
|
|
- name: Import secrets
|
|
|
|
uses: hashicorp/vault-action@v2.4.2
|
|
|
|
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: "npm/package-lock.json"
|
|
|
|
cache: "npm"
|
|
|
|
|
2022-09-14 14:36:16 +00:00
|
|
|
- run: npm i
|
|
|
|
working-directory: npm
|
|
|
|
|
2022-09-14 02:59:49 +00:00
|
|
|
- name: Set fluence-js version from branch
|
|
|
|
if: inputs.fluence-js-version != ''
|
|
|
|
working-directory: npm
|
2022-10-10 18:02:30 +00:00
|
|
|
run: npm i --save -E @fluencelabs/fluence@${{ inputs.fluence-js-version }}
|
2022-09-14 02:59:49 +00:00
|
|
|
|
|
|
|
- run: npm run build
|
|
|
|
working-directory: npm
|
|
|
|
|
|
|
|
- name: Generate package version
|
|
|
|
id: version
|
|
|
|
run: |
|
2022-09-14 14:36:16 +00:00
|
|
|
SHA=${{ github.event.pull_request.head.sha }}
|
2022-10-31 14:51:37 +00:00
|
|
|
echo "sha=${SHA::7}" >> $GITHUB_OUTPUT
|
|
|
|
echo "branch=${GITHUB_HEAD_REF//[^a-zA-Z0-9-]/-}" >> $GITHUB_OUTPUT
|
2022-09-14 02:59:49 +00:00
|
|
|
|
|
|
|
- name: Set package version
|
|
|
|
id: build
|
|
|
|
env:
|
|
|
|
BRANCH: ${{ steps.version.outputs.branch }}
|
|
|
|
SHA: ${{ steps.version.outputs.sha }}
|
|
|
|
RUN: ${{ github.run_number }}
|
|
|
|
ATTEMPT: ${{ github.run_attempt }}
|
|
|
|
working-directory: npm
|
|
|
|
run: |
|
2022-10-31 14:51:37 +00:00
|
|
|
echo "version=$(\
|
2022-09-14 02:59:49 +00:00
|
|
|
npm version prerelease \
|
|
|
|
--no-git-tag-version \
|
2022-10-31 14:51:37 +00:00
|
|
|
--preid ${{ env.BRANCH }}-${{ env.SHA }}-${{ env.RUN }}-${{ env.ATTEMPT }})" >> $GITHUB_OUTPUT
|
2022-09-14 02:59:49 +00:00
|
|
|
|
|
|
|
- name: Publish to self-hosted npm repo
|
|
|
|
working-directory: npm
|
|
|
|
run: npm publish --tag snapshot --registry https://npm.fluence.dev
|
|
|
|
|
2022-10-31 14:51:37 +00:00
|
|
|
- name: Print versions to check summary
|
2022-09-14 14:36:16 +00:00
|
|
|
env:
|
2022-10-31 14:51:37 +00:00
|
|
|
VERSION: ${{ steps.build.outputs.version }}
|
|
|
|
run: |
|
|
|
|
cat <<'SNAPSHOT' >> $GITHUB_STEP_SUMMARY
|
|
|
|
## aqua version is [${{ env.VERSION }}](https://npm.fluence.dev/-/web/detail/@fluencelabs/aqua/v/${{ env.VERSION }})
|
|
|
|
To use it run:
|
|
|
|
```shell
|
|
|
|
npm i @fluencelabs/aqua@=${{ env.VERSION }} --registry=https://npm.fluence.dev
|
|
|
|
```
|
|
|
|
SNAPSHOT
|