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

Test CI for publishing builtin plugins #1649

Closed
wants to merge 21 commits into from
Closed
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
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- main
pull_request:
merge_group:

jobs:
Expand Down
64 changes: 64 additions & 0 deletions .github/workflows/publish_plugins.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: Publish Built-in Plugins
on:
release:
types:
- published
pull_request:

jobs:
publish:
name: Publish plugins
runs-on: ubuntu-latest
env:
SCARB_REGISTRY_AUTH_TOKEN: ${{ secrets.SCARB_REGISTRY_AUTH_TOKEN }}

steps:
- uses: actions/checkout@v4

- uses: software-mansion/setup-scarb@v1
with:
scarb-version: nightly-2024-10-15

- name: Init Scarb to cache plugins
id: scarb-init
run: |
set -eo pipefail
mkdir -p $HOME/pkg
pushd $HOME/pkg
scarb init --no-vcs
echo "CAIRO_VERSION=$(scarb metadata --format-version 1 | jq -r '.app_version_info.cairo.version')" >> $GITHUB_OUTPUT
env:
SCARB_INIT_TEST_RUNNER: cairo-test

- name: Check if plugin versions exist in the registry
id: check-plugins
run: |
set -eo pipefail
echo "assert_macros_exists=$(curl -s https://scarbs.dev/api/v1/index/as/se/assert_macros.json | jq --arg version "${{ steps.scarb-init.outputs.CAIRO_VERSION }}" '[.[] | select(.v == $version)] | length > 0')" >> $GITHUB_OUTPUT
echo "cairo_run_exists=$(curl -s https://scarbs.dev/api/v1/index/ca/ir/cairo_run.json | jq --arg version "${{ steps.scarb-init.outputs.CAIRO_VERSION }}" '[.[] | select(.v == $version)] | length > 0')" >> $GITHUB_OUTPUT
echo "starknet_exists=$(curl -s https://scarbs.dev/api/v1/index/st/ar/starknet.json | jq --arg version "${{ steps.scarb-init.outputs.CAIRO_VERSION }}" '[.[] | select(.v == $version)] | length > 0')" >> $GITHUB_OUTPUT
echo "cairo_test_exists=$(curl -s https://scarbs.dev/api/v1/index/ca/ir/cairo_test.json | jq --arg version "${{ steps.scarb-init.outputs.CAIRO_VERSION }}" '[.[] | select(.v == $version)] | length > 0')" >> $GITHUB_OUTPUT

- name: Publish starknet
if: steps.check-plugins.outputs.starknet_exists != 'true'
run: |
pushd $HOME/.cache/scarb/registry/std/7a2cdc90b/starknet
scarb publish --index https://scarbs.dev --no-verify

- name: Publish cairo_run
if: steps.check-plugins.outputs.cairo_run_exists != 'true'
run: |
pushd $HOME/.cache/scarb/registry/std/7a2cdc90b/cairo_run
scarb publish --index https://scarbs.dev --no-verify

- name: Publish cairo_test
if: steps.check-plugins.outputs.cairo_test_exists != 'true'
run: |
pushd $HOME/.cache/scarb/registry/std/7a2cdc90b/test_plugin
scarb publish --index https://scarbs.dev --no-verify

- name: Publish assert_macros
if: steps.check-plugins.outputs.assert_macros_exists != 'true'
run: |
pushd $HOME/.cache/scarb/registry/std/7a2cdc90b/assert_macros
scarb publish --index https://scarbs.dev --no-verify
Loading