Skip to content

Commit

Permalink
Merge branch 'main' of github.com:demergent-labs/azle into remove_unn…
Browse files Browse the repository at this point in the history
…ecessary_experimental
  • Loading branch information
lastmjs committed Nov 1, 2024
2 parents 3734606 + 137bea9 commit 2f5545e
Show file tree
Hide file tree
Showing 375 changed files with 19,367 additions and 24,975 deletions.
10 changes: 10 additions & 0 deletions .github/actions/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## Prerequisite

These actions assume that the repository has already been checked out before
calling the action, typically using `actions/checkout@v4`. If you have not
checked out the code in a previous step, make sure to do so to avoid errors.

Unless otherwise specified, these actions do **not** perform a checkout action
themselves because it would be redundant. These actions are part of the
repository's codebase, so if the code hasn't already been checked out, the
actions themselves wouldn't even be available to call.
12 changes: 12 additions & 0 deletions .github/actions/commit_and_push/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
## Example Usage

```yaml
steps:
- uses: actions/checkout@v4

- uses: ./.github/actions/commit_and_push
with:
gpg_signing_key: ${{ secrets.GPG_SIGNING_KEY }}
branch-name: 'branch-name'
commit-message: 'commit message'
```
33 changes: 33 additions & 0 deletions .github/actions/commit_and_push/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Commit and Push Changes
description: 'Configures git, commits changes, and pushes to a new branch'
inputs:
branch-name:
description: 'Name of the branch to create'
required: true
commit-message:
description: 'Commit message'
required: true
gpg_signing_key:
description: 'The GPG signing key to use for signing commits'
required: true
runs:
using: composite
steps:
- uses: ./.github/actions/configure_git
with:
gpg_signing_key: ${{ inputs.gpg_signing_key }}

- name: Commit and push changes
shell: bash
run: |
# Create and switch to new branch
git switch -c "${{ inputs.branch-name }}"
# Show status of working directory
echo "Current git status:"
git status
# Add and commit changes if there are any
git add --all
git commit -m "${{ inputs.commit-message }}"
git push origin "${{ inputs.branch-name }}"
11 changes: 0 additions & 11 deletions .github/actions/configure_git/README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,3 @@
## Prerequisite

This action assumes that the repository has already been checked out before
calling the action, typically using `actions/checkout@v4`. If you have not
checked out the code in a previous step, make sure to do so to avoid errors.

This action does **not** perform a checkout action itself because it would be
redundant. This action is part of the repository's codebase, so if the code
hasn't already been checked out, the action itself wouldn't even be available to
call.

## Example Usage

```yaml
Expand Down
13 changes: 13 additions & 0 deletions .github/actions/create_branch_name/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
## Example Usage

```yaml
steps:
- id: create-branch-name
uses: ./.github/actions/create_branch_name
with:
prefix: 'update--0.24.2-rc.89-'
path: 'examples/hello_world'
```
The action will convert the path to use hyphens instead of slashes and combine it with the prefix.
For example, with the inputs above, it would output: `update--examples-hello_world`
21 changes: 21 additions & 0 deletions .github/actions/create_branch_name/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Create Branch Name
description: 'Creates a branch name by combining a prefix with a path, converting slashes to hyphens'
inputs:
prefix:
description: 'Prefix for the branch name'
required: true
path:
description: 'Path to convert into branch name'
required: true
outputs:
branch-name:
description: 'The generated branch name'
value: ${{ steps.create-branch-name.outputs.branch-name }}
runs:
using: composite
steps:
- id: create-branch-name
shell: bash
run: |
SAFE_PATH=$(echo '${{ inputs.path }}' | sed 's/\//-/g')
echo "branch-name=${{ inputs.prefix }}${SAFE_PATH}" >> $GITHUB_OUTPUT
15 changes: 15 additions & 0 deletions .github/actions/get_exclude_dirs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
## Example Usage

```yaml
steps:
- uses: actions/checkout@v4

- id: get-exclude-dirs
uses: ./.github/actions/get_exclude_dirs
with:
exclude-slow: true
exclude-unstable: true
exclude-release: true

- run: echo "${{ steps.get-exclude-dirs.outputs.exclude-dirs }}"
```
71 changes: 71 additions & 0 deletions .github/actions/get_exclude_dirs/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
name: Get Exclude Directories
description: 'Gets a list of directories to exclude based on input parameters'
inputs:
exclude-slow:
description: 'Whether to exclude slow benchmarks'
required: true
exclude-unstable:
description: 'Whether to exclude unstable benchmarks'
required: true
exclude-release-only:
description: 'Whether to exclude release only benchmarks'
required: true
outputs:
exclude-dirs:
description: 'Space-separated list of directories to exclude'
value: ${{ steps.set-exclude-dirs.outputs.exclude-dirs }}
runs:
using: composite
steps:
- id: set-exclude-dirs
shell: bash
run: |
RELEASE_ONLY_EXCLUSIONS="${{ format('
tests/end_to_end/candid_rpc/class_syntax/new
tests/end_to_end/http_server/new
') }}"
UNSTABLE_EXCLUSIONS="${{ format('
examples/basic_bitcoin
examples/bitcoin_psbt
examples/ckbtc
tests/end_to_end/http_server/ethers_base
tests/end_to_end/http_server/http_outcall_fetch
tests/end_to_end/http_server/ic_evm_rpc
tests/property/candid_rpc/class_api/stable_b_tree_map
tests/property/candid_rpc/functional_api/stable_b_tree_map
tests/property/ic_api/performance_counter
tests/property/ic_api/instruction_counter
') }}"
SLOW_EXCLUSIONS="${{ format('
tests/end_to_end/candid_rpc/class_syntax/bitcoin
tests/end_to_end/candid_rpc/class_syntax/stable_structures
tests/end_to_end/candid_rpc/functional_syntax/bitcoin
tests/end_to_end/candid_rpc/functional_syntax/composite_queries
tests/end_to_end/candid_rpc/functional_syntax/ckbtc
tests/end_to_end/candid_rpc/functional_syntax/cross_canister_calls
tests/end_to_end/candid_rpc/functional_syntax/management_canister
tests/end_to_end/candid_rpc/functional_syntax/stable_structures
tests/end_to_end/http_server/autoreload
tests/end_to_end/http_server/large_files
tests/end_to_end/http_server/open_value_sharing
') }}"
EXCLUDE_DIRS=""
if [[ "${{ inputs.exclude-release-only }}" == "true" ]]; then
EXCLUDE_DIRS="$EXCLUDE_DIRS $RELEASE_ONLY_EXCLUSIONS"
fi
if [[ "${{ inputs.exclude-unstable }}" == "true" ]]; then
EXCLUDE_DIRS="$EXCLUDE_DIRS $UNSTABLE_EXCLUSIONS"
fi
if [[ "${{ inputs.exclude-slow }}" == "true" ]]; then
EXCLUDE_DIRS="$EXCLUDE_DIRS $SLOW_EXCLUSIONS"
fi
# Trim leading or trailing spaces and save the exclude-dirs in the environment
EXCLUDE_DIRS=$(echo $EXCLUDE_DIRS | xargs)
echo "exclude-dirs=$EXCLUDE_DIRS" >> $GITHUB_OUTPUT
13 changes: 0 additions & 13 deletions .github/actions/get_test_infos/README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,3 @@
## Prerequisite

This action assumes that the repository has already been checked out before
calling the action, typically using `actions/checkout@v4`. If you have not
checked out the code in a previous step, make sure to do so to avoid errors.

This action does **not** perform a checkout action itself because it would be
redundant. This action is part of the repository’s codebase, so if the code
hasn’t already been checked out, the action itself wouldn't even be available to
call. Additionally, rerunning a checkout at this stage could potentially
overwrite any earlier `actions/checkout` step with different parameters, such as
checking out a specific branch.

## Example Usage

```yaml
Expand Down
13 changes: 0 additions & 13 deletions .github/actions/set_run_conditions/README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,3 @@
## Prerequisite

This action assumes that the repository has already been checked out before
calling the action, typically using `actions/checkout@v4`. If you have not
checked out the code in a previous step, make sure to do so to avoid errors.

This action does **not** perform a checkout action itself because it would be
redundant. This action is part of the repository's codebase, so if the code
hasn't already been checked out, the action itself wouldn't even be available to
call. Additionally, rerunning a checkout at this stage could potentially
overwrite any earlier `actions/checkout` step with different parameters, such as
checking out a specific branch.

## Example Usage

```yaml
Expand Down
13 changes: 0 additions & 13 deletions .github/actions/setup_dfx/README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,3 @@
## Prerequisite

This action assumes that the repository has already been checked out before
calling the action, typically using `actions/checkout@v4`. If you have not
checked out the code in a previous step, make sure to do so to avoid errors.

This action does **not** perform a checkout action itself because it would be
redundant. This action is part of the repository’s codebase, so if the code
hasn’t already been checked out, the action itself wouldn't even be available to
call. Additionally, rerunning a checkout at this stage could potentially
overwrite any earlier `actions/checkout` step with different parameters, such as
checking out a specific branch.

## Example Usage

```yaml
Expand Down
13 changes: 0 additions & 13 deletions .github/actions/setup_node/README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,3 @@
## Prerequisite

This action assumes that the repository has already been checked out before
calling the action, typically using `actions/checkout@v4`. If you have not
checked out the code in a previous step, make sure to do so to avoid errors.

This action does **not** perform a checkout action itself because it would be
redundant. This action is part of the repository’s codebase, so if the code
hasn’t already been checked out, the action itself wouldn't even be available to
call. Additionally, rerunning a checkout at this stage could potentially
overwrite any earlier `actions/checkout` step with different parameters, such as
checking out a specific branch.

## Example Usage

```yaml
Expand Down
19 changes: 0 additions & 19 deletions .github/actions/should_release/README.md

This file was deleted.

27 changes: 0 additions & 27 deletions .github/actions/should_release/action.yml

This file was deleted.

Loading

0 comments on commit 2f5545e

Please sign in to comment.