Skip to content

Commit

Permalink
CI pipeline updated
Browse files Browse the repository at this point in the history
  • Loading branch information
TristanAllaire committed Mar 15, 2024
1 parent 1838dbc commit 98abe06
Show file tree
Hide file tree
Showing 136 changed files with 453 additions and 453 deletions.
2 changes: 1 addition & 1 deletion .ci/.gitlab-ci-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ add-changelog-entry:
if [[ $exit_code != 0 ]]; then
exit $exit_code
fi
- git remote rm origin && git remote add origin "[email protected]:ligolang/ligo.git"
- git remote rm origin && git remote add origin "[email protected]:mavryk-network/ligo.git"
- git add changelog/* changelog-tools/*
- git commit -m "[Bot] add changelog entry"
- git push origin HEAD:$CI_COMMIT_REF_NAME
Expand Down
4 changes: 2 additions & 2 deletions .ci/.gitlab-ci-notify.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
notify-christian-on-frontend-change:
stage: post-build-action
script:
- MESSAGE="Someone edited frontend https://gitlab.com/ligolang/ligo/-/merge_requests/$CI_MERGE_REQUEST_IID"
- MESSAGE="Someone edited frontend https://gitlab.com/mavryk-network/ligo/-/merge_requests/$CI_MERGE_REQUEST_IID"
- "curl -d \"text=${MESSAGE}\" -d 'channel=UC5125SQP' -H \"Authorization: Bearer ${SLACK_LIGO_ALERTER_TOKEN}\" -X POST https://slack.com/api/chat.postMessage --trace-ascii /dev/stdout"
when: on_failure
rules:
# 2654428 & UC5125SQP = Christian
- if: $GITLAB_USER_ID == "2654428"
when: never
- if: '$CI_PIPELINE_SOURCE == "merge_request_event" && $CI_PROJECT_PATH == "ligolang/ligo"'
- if: '$CI_PIPELINE_SOURCE == "merge_request_event" && $CI_PROJECT_PATH == "mavryk-network/ligo"'
changes:
- src/stages/1-cst/**/*
- src/passes/00-preprocessing/**/*
Expand Down
18 changes: 9 additions & 9 deletions .ci/.gitlab-ci-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ build_release_env_vars:
create-tag:
stage: release
script:
- git remote rm origin && git remote add origin "[email protected]:ligolang/ligo.git"
- git remote rm origin && git remote add origin "[email protected]:mavryk-network/ligo.git"
# Don't want to tag for testing
- echo $DRY_RUN_RELEASE
- |
Expand Down Expand Up @@ -136,7 +136,7 @@ docker-m1:
- docker image rm -f "${LIGO_IMAGE_TAG}-builder" >/dev/null 2>&1 || true
- docker image rm -f "${LIGO_IMAGE_TAG}" >/dev/null 2>&1 || true
rules:
- if: '$CI_COMMIT_TAG =~ /[0-9]+\.[0-9]+\.[0-9]/ && $CI_PROJECT_PATH == "ligolang/ligo"'
- if: '$CI_COMMIT_TAG =~ /[0-9]+\.[0-9]+\.[0-9]/ && $CI_PROJECT_PATH == "mavryk-network/ligo"'
when: always
artifacts:
paths:
Expand Down Expand Up @@ -192,11 +192,11 @@ create_docker_stable_version:
- job: determine_new_stable_version
artifacts: true
script:
- docker pull ligolang/ligo:$STABLE_VERSION
- docker pull mavrykdynamics/ligo:$STABLE_VERSION
- |
if [[ $DRY_RUN_RELEASE == "" ]]; then
docker tag ligolang/ligo:$STABLE_VERSION ligolang/ligo:stable
docker push ligolang/ligo:stable
docker tag mavrykdynamics/ligo:$STABLE_VERSION mavrykdynamics/ligo:stable
docker push mavrykdynamics/ligo:stable
fi
update_release_metadata:
Expand Down Expand Up @@ -234,7 +234,7 @@ update_release_metadata:
if [[ $DRY_RUN_RELEASE != "" ]]; then
CI_COMMIT_TAG=${CI_COMMIT_BRANCH#"release/"}
fi
- git remote rm origin && git remote add origin "[email protected]:ligolang/ligo.git"
- git remote rm origin && git remote add origin "[email protected]:mavryk-network/ligo.git"
- git fetch
- git checkout release/$CI_COMMIT_TAG
- ./.ci/scripts/release_metadata/edit_release_metadata.sh LAST_RELEASE_VERSION $CI_COMMIT_TAG
Expand Down Expand Up @@ -372,7 +372,7 @@ update-ligo-bin-PKGBUILD:
stage: pretooling
script:
- LAST_TAG_JOB_ID=`./.ci/scripts/release_metadata/read_release_metadata.sh LAST_TAG_JOB_ID`
- ./.ci/scripts/AUR/create_new_pkgbuild_version.sh https://gitlab.com/ligolang/ligo/-/jobs/$LAST_TAG_JOB_ID/artifacts/raw/ligo.deb $RELEASE_VERSION
- ./.ci/scripts/AUR/create_new_pkgbuild_version.sh https://gitlab.com/mavryk-network/ligo/-/jobs/$LAST_TAG_JOB_ID/artifacts/raw/ligo.deb $RELEASE_VERSION
- cp ./.ci/scripts/AUR/ligo.PKGBUILD ./ligo-bin/PKGBUILD
needs:
- job: initialize-aur-repo
Expand Down Expand Up @@ -417,7 +417,7 @@ calculate_nix_SRI:
when: always
script:
- LAST_TAG_JOB_ID=`./.ci/scripts/release_metadata/read_release_metadata.sh LAST_TAG_JOB_ID`
- BINARY_GITLAB_ARTIFACT_URL="https://gitlab.com/ligolang/ligo/-/jobs/$LAST_TAG_JOB_ID/artifacts/raw/ligo"
- BINARY_GITLAB_ARTIFACT_URL="https://gitlab.com/mavryk-network/ligo/-/jobs/$LAST_TAG_JOB_ID/artifacts/raw/ligo"
- SRI_LIGO_BINARY_HASH=$(nix --extra-experimental-features nix-command hash to-sri --type sha256 $(nix-prefetch-url --type sha256 --quiet $BINARY_GITLAB_ARTIFACT_URL))
- echo "SRI_LIGO_BINARY_HASH=${SRI_LIGO_BINARY_HASH}" >> nixSriLigoBinary.env
artifacts:
Expand Down Expand Up @@ -446,7 +446,7 @@ update-repository-status:
script:
- git submodule sync --recursive
- git submodule update --init --recursive --remote --force
- git remote rm origin && git remote add origin "[email protected]:ligolang/ligo.git"
- git remote rm origin && git remote add origin "[email protected]:mavryk-network/ligo.git"
- node scripts/manpages/manpages.js ./ligo
- ./.ci/scripts/build_website_references_from_stdlib/main.sh ligo
- ./.ci/scripts/versioning_website.sh $RELEASE_VERSION
Expand Down
2 changes: 1 addition & 1 deletion .ci/scripts/AUR/template/template.PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pkgname=ligo-bin
pkgver=LIGO_VERSION_PLACEHOLDER
pkgrel=1
pkgdesc="High Level Smart Contract Language for Tezos (binary)"
url="https://gitlab.com/ligolang/ligo"
url="https://gitlab.com/mavryk-network/ligo"

arch=('x86_64')
license=('MIT')
Expand Down
4 changes: 2 additions & 2 deletions .ci/scripts/homebrew/template/homebrew-template.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ class LIGO_CLASS_PLACEHOLDER < Formula
license "MIT"

# We clone repo explicitely to preserve the information about git submodules
url "https://gitlab.com/ligolang/ligo.git", tag: "LIGO_VERSION_PLACEHOLDER", revision: "LIGO_HEAD_REF_HASH_PLACEHOLDER"
url "https://gitlab.com/mavryk-network/ligo.git", tag: "LIGO_VERSION_PLACEHOLDER", revision: "LIGO_HEAD_REF_HASH_PLACEHOLDER"
version "LIGO_VERSION_PLACEHOLDER"
head "https://gitlab.com/ligolang/ligo.git", branch: "dev"
head "https://gitlab.com/mavryk-network/ligo.git", branch: "dev"


bottle do
Expand Down
2 changes: 1 addition & 1 deletion .ci/scripts/nix/update_ligo_default_nix_file.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if [ "$(uname)" == "Darwin" ]; then
fi

# Replace SRI for nix
SRI_LIGO_BINARY_HASH=$(nix --extra-experimental-features nix-command hash to-sri --type sha256 $(jq -r .sha256 <<< $(nix run nixpkgs#nix-prefetch-git -- --rev $VERSION --url https://gitlab.com/ligolang/ligo.git --fetch-submodules --quiet --no-deepClone)))
SRI_LIGO_BINARY_HASH=$(nix --extra-experimental-features nix-command hash to-sri --type sha256 $(jq -r .sha256 <<< $(nix run nixpkgs#nix-prefetch-git -- --rev $VERSION --url https://gitlab.com/mavryk-network/ligo.git --fetch-submodules --quiet --no-deepClone)))
echo "update distribution reference SRI_LIGO_BINARY_HASH = $SRI_LIGO_BINARY_HASH"

# Idk why, all nixPkgs files are 644, so I change it temporarly to be able to edit it
Expand Down
6 changes: 3 additions & 3 deletions .ci/scripts/update_distribution_references_with_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ ROOT_FOLDER="../.."
DISTRIBUTION_URL_PATTERN_DEB_NEXT="https://ligolang.org/deb/ligo.deb"
DISTRIBUTION_URL_PATTERN_BINARY_NEXT="https://ligolang.org/bin/linux/ligo"

DISTRIBUTION_URL_GITLAB_ARTIFACT_REGEX_PATTERN_RELEASE="(.*https://gitlab\.com/ligolang/ligo/-/jobs/)[0-9]{10}(/artifacts/raw\/(ligo\.deb|ligo))"
DISTRIBUTION_URL_GITLAB_ARTIFACT_REGEX_PATTERN_RELEASE="(.*https://gitlab\.com/mavryk-network/ligo/-/jobs/)[0-9]{10}(/artifacts/raw\/(ligo\.deb|ligo))"

VERSION_REGEX_PATTERN="ligo:[0-9]+\.[0-9]+\.[0-9]+"

DEB_GITLAB_ARTIFACT_URL="https://gitlab.com/ligolang/ligo/-/jobs/$1/artifacts/raw/ligo.deb"
BINARY_GITLAB_ARTIFACT_URL="https://gitlab.com/ligolang/ligo/-/jobs/$1/artifacts/raw/ligo"
DEB_GITLAB_ARTIFACT_URL="https://gitlab.com/mavryk-network/ligo/-/jobs/$1/artifacts/raw/ligo.deb"
BINARY_GITLAB_ARTIFACT_URL="https://gitlab.com/mavryk-network/ligo/-/jobs/$1/artifacts/raw/ligo"

FILES_PATH_TO_EDIT=(
"$ROOT_FOLDER/tools/webide-new/ligo-webide-backend/Dockerfile"
Expand Down
4 changes: 2 additions & 2 deletions HomebrewFormula/ligo.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ class Ligo < Formula
license "MIT"

# We clone repo explicitely to preserve the information about git submodules
url "https://gitlab.com/ligolang/ligo.git", tag: "1.4.0", revision: "86548dbd16776c30fd47e5fdf48631cfffecaea3"
url "https://gitlab.com/mavryk-network/ligo.git", tag: "1.4.0", revision: "86548dbd16776c30fd47e5fdf48631cfffecaea3"
version "1.4.0"
head "https://gitlab.com/ligolang/ligo.git", branch: "dev"
head "https://gitlab.com/mavryk-network/ligo.git", branch: "dev"


bottle do
Expand Down
4 changes: 2 additions & 2 deletions HomebrewFormula/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ class LigoAT0632 < Formula
license "MIT"

# We clone repo explicitely to preserve the information about git submodules
url "https://gitlab.com/ligolang/ligo.git", tag: "0.63.2", revision: "edaeecfc20ccb598a2cf97348df847762d36cac8"
url "https://gitlab.com/mavryk-network/ligo.git", tag: "0.63.2", revision: "edaeecfc20ccb598a2cf97348df847762d36cac8"
version "0.63.2"
head "https://gitlab.com/ligolang/ligo.git", branch: "dev"
head "https://gitlab.com/mavryk-network/ligo.git", branch: "dev"


bottle do
Expand Down
4 changes: 2 additions & 2 deletions HomebrewFormula/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ class LigoAT0660 < Formula
license "MIT"

# We clone repo explicitely to preserve the information about git submodules
url "https://gitlab.com/ligolang/ligo.git", tag: "0.66.0", revision: "e003f647fd090a18de2086e2e2b8821981a6a33b"
url "https://gitlab.com/mavryk-network/ligo.git", tag: "0.66.0", revision: "e003f647fd090a18de2086e2e2b8821981a6a33b"
version "0.66.0"
head "https://gitlab.com/ligolang/ligo.git", branch: "dev"
head "https://gitlab.com/mavryk-network/ligo.git", branch: "dev"


bottle do
Expand Down
4 changes: 2 additions & 2 deletions HomebrewFormula/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ class LigoAT0671 < Formula
license "MIT"

# We clone repo explicitely to preserve the information about git submodules
url "https://gitlab.com/ligolang/ligo.git", tag: "0.67.1", revision: "48e82e0f27e5c5ac6a360b2973a8df2f8420caf7"
url "https://gitlab.com/mavryk-network/ligo.git", tag: "0.67.1", revision: "48e82e0f27e5c5ac6a360b2973a8df2f8420caf7"
version "0.67.1"
head "https://gitlab.com/ligolang/ligo.git", branch: "dev"
head "https://gitlab.com/mavryk-network/ligo.git", branch: "dev"


bottle do
Expand Down
4 changes: 2 additions & 2 deletions HomebrewFormula/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ class LigoAT0680 < Formula
license "MIT"

# We clone repo explicitely to preserve the information about git submodules
url "https://gitlab.com/ligolang/ligo.git", tag: "0.68.0", revision: "f23d9cf9807ca8ccab05c83d42a9df3066f695b3"
url "https://gitlab.com/mavryk-network/ligo.git", tag: "0.68.0", revision: "f23d9cf9807ca8ccab05c83d42a9df3066f695b3"
version "0.68.0"
head "https://gitlab.com/ligolang/ligo.git", branch: "dev"
head "https://gitlab.com/mavryk-network/ligo.git", branch: "dev"


bottle do
Expand Down
4 changes: 2 additions & 2 deletions HomebrewFormula/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ class LigoAT0690 < Formula
license "MIT"

# We clone repo explicitely to preserve the information about git submodules
url "https://gitlab.com/ligolang/ligo.git", tag: "0.69.0", revision: "d63c34412535fadfd98859dd8dad630fe08e90c2"
url "https://gitlab.com/mavryk-network/ligo.git", tag: "0.69.0", revision: "d63c34412535fadfd98859dd8dad630fe08e90c2"
version "0.69.0"
head "https://gitlab.com/ligolang/ligo.git", branch: "dev"
head "https://gitlab.com/mavryk-network/ligo.git", branch: "dev"


bottle do
Expand Down
4 changes: 2 additions & 2 deletions HomebrewFormula/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ class LigoAT0700 < Formula
license "MIT"

# We clone repo explicitely to preserve the information about git submodules
url "https://gitlab.com/ligolang/ligo.git", tag: "0.70.0", revision: "709efd88f1ddcdf44a2e91400ad912b2f0b14e0e"
url "https://gitlab.com/mavryk-network/ligo.git", tag: "0.70.0", revision: "709efd88f1ddcdf44a2e91400ad912b2f0b14e0e"
version "0.70.0"
head "https://gitlab.com/ligolang/ligo.git", branch: "dev"
head "https://gitlab.com/mavryk-network/ligo.git", branch: "dev"


bottle do
Expand Down
4 changes: 2 additions & 2 deletions HomebrewFormula/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ class LigoAT0701 < Formula
license "MIT"

# We clone repo explicitely to preserve the information about git submodules
url "https://gitlab.com/ligolang/ligo.git", tag: "0.70.1", revision: "06791c7c53c9ab0a519af7472c699372377def11"
url "https://gitlab.com/mavryk-network/ligo.git", tag: "0.70.1", revision: "06791c7c53c9ab0a519af7472c699372377def11"
version "0.70.1"
head "https://gitlab.com/ligolang/ligo.git", branch: "dev"
head "https://gitlab.com/mavryk-network/ligo.git", branch: "dev"


bottle do
Expand Down
4 changes: 2 additions & 2 deletions HomebrewFormula/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ class LigoAT0710 < Formula
license "MIT"

# We clone repo explicitely to preserve the information about git submodules
url "https://gitlab.com/ligolang/ligo.git", tag: "0.71.0", revision: "bdd69fa7cd9adc8756ca9e688ede0335672e29cf"
url "https://gitlab.com/mavryk-network/ligo.git", tag: "0.71.0", revision: "bdd69fa7cd9adc8756ca9e688ede0335672e29cf"
version "0.71.0"
head "https://gitlab.com/ligolang/ligo.git", branch: "dev"
head "https://gitlab.com/mavryk-network/ligo.git", branch: "dev"


bottle do
Expand Down
4 changes: 2 additions & 2 deletions HomebrewFormula/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ class LigoAT0711 < Formula
license "MIT"

# We clone repo explicitely to preserve the information about git submodules
url "https://gitlab.com/ligolang/ligo.git", tag: "0.71.1", revision: "2d557873ccd14e03e3ad42ed46a88571f4eeafab"
url "https://gitlab.com/mavryk-network/ligo.git", tag: "0.71.1", revision: "2d557873ccd14e03e3ad42ed46a88571f4eeafab"
version "0.71.1"
head "https://gitlab.com/ligolang/ligo.git", branch: "dev"
head "https://gitlab.com/mavryk-network/ligo.git", branch: "dev"


bottle do
Expand Down
4 changes: 2 additions & 2 deletions HomebrewFormula/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ class LigoAT0720 < Formula
license "MIT"

# We clone repo explicitely to preserve the information about git submodules
url "https://gitlab.com/ligolang/ligo.git", tag: "0.72.0", revision: "d59593717f7600faba4d20d4a2a2fe851df96317"
url "https://gitlab.com/mavryk-network/ligo.git", tag: "0.72.0", revision: "d59593717f7600faba4d20d4a2a2fe851df96317"
version "0.72.0"
head "https://gitlab.com/ligolang/ligo.git", branch: "dev"
head "https://gitlab.com/mavryk-network/ligo.git", branch: "dev"


bottle do
Expand Down
4 changes: 2 additions & 2 deletions HomebrewFormula/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ class LigoAT0730 < Formula
license "MIT"

# We clone repo explicitely to preserve the information about git submodules
url "https://gitlab.com/ligolang/ligo.git", tag: "0.73.0", revision: "48b0382cbd8be4c0be5140b952be780313861593"
url "https://gitlab.com/mavryk-network/ligo.git", tag: "0.73.0", revision: "48b0382cbd8be4c0be5140b952be780313861593"
version "0.73.0"
head "https://gitlab.com/ligolang/ligo.git", branch: "dev"
head "https://gitlab.com/mavryk-network/ligo.git", branch: "dev"


bottle do
Expand Down
4 changes: 2 additions & 2 deletions HomebrewFormula/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ class LigoAT100 < Formula
license "MIT"

# We clone repo explicitely to preserve the information about git submodules
url "https://gitlab.com/ligolang/ligo.git", tag: "1.0.0", revision: "a392154388b1abe974f424b71a66d618010f9e95"
url "https://gitlab.com/mavryk-network/ligo.git", tag: "1.0.0", revision: "a392154388b1abe974f424b71a66d618010f9e95"
version "1.0.0"
head "https://gitlab.com/ligolang/ligo.git", branch: "dev"
head "https://gitlab.com/mavryk-network/ligo.git", branch: "dev"


bottle do
Expand Down
4 changes: 2 additions & 2 deletions HomebrewFormula/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ class LigoAT110 < Formula
license "MIT"

# We clone repo explicitely to preserve the information about git submodules
url "https://gitlab.com/ligolang/ligo.git", tag: "1.1.0", revision: "edcf7f67c70016705068934d29dfcd531f6908f0"
url "https://gitlab.com/mavryk-network/ligo.git", tag: "1.1.0", revision: "edcf7f67c70016705068934d29dfcd531f6908f0"
version "1.1.0"
head "https://gitlab.com/ligolang/ligo.git", branch: "dev"
head "https://gitlab.com/mavryk-network/ligo.git", branch: "dev"


bottle do
Expand Down
4 changes: 2 additions & 2 deletions HomebrewFormula/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ class LigoAT120 < Formula
license "MIT"

# We clone repo explicitely to preserve the information about git submodules
url "https://gitlab.com/ligolang/ligo.git", tag: "1.2.0", revision: "2c62623f2593fff02ac27154ceaa5e6e3bbb8d5c"
url "https://gitlab.com/mavryk-network/ligo.git", tag: "1.2.0", revision: "2c62623f2593fff02ac27154ceaa5e6e3bbb8d5c"
version "1.2.0"
head "https://gitlab.com/ligolang/ligo.git", branch: "dev"
head "https://gitlab.com/mavryk-network/ligo.git", branch: "dev"


bottle do
Expand Down
4 changes: 2 additions & 2 deletions HomebrewFormula/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ class LigoAT130 < Formula
license "MIT"

# We clone repo explicitely to preserve the information about git submodules
url "https://gitlab.com/ligolang/ligo.git", tag: "1.3.0", revision: ""
url "https://gitlab.com/mavryk-network/ligo.git", tag: "1.3.0", revision: ""
version "1.3.0"
head "https://gitlab.com/ligolang/ligo.git", branch: "dev"
head "https://gitlab.com/mavryk-network/ligo.git", branch: "dev"


bottle do
Expand Down
4 changes: 2 additions & 2 deletions HomebrewFormula/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ class LigoAT140 < Formula
license "MIT"

# We clone repo explicitely to preserve the information about git submodules
url "https://gitlab.com/ligolang/ligo.git", tag: "1.4.0", revision: "86548dbd16776c30fd47e5fdf48631cfffecaea3"
url "https://gitlab.com/mavryk-network/ligo.git", tag: "1.4.0", revision: "86548dbd16776c30fd47e5fdf48631cfffecaea3"
version "1.4.0"
head "https://gitlab.com/ligolang/ligo.git", branch: "dev"
head "https://gitlab.com/mavryk-network/ligo.git", branch: "dev"


bottle do
Expand Down
2 changes: 1 addition & 1 deletion changelog/1722
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
author: nicolas.van.phan
description: Closes(https://gitlab.com/ligolang/ligo/-/issues/1390)
description: Closes(https://gitlab.com/mavryk-network/ligo/-/issues/1390)
merge_request: '1722'
title: Typer context - Replace lists by maps
type: fixed
2 changes: 1 addition & 1 deletion changelog/1937
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
author: Laucans
description: \nRun `nix run gitlab:ligolang/ligo` to execute the last release of ligo
description: \nRun `nix run gitlab:mavryk-network/ligo` to execute the last release of ligo
binary through [nix](https://nixos.org) (arch x86_64-linux)
merge_request: '1937'
title: Execute ligo through NIX
Expand Down
4 changes: 2 additions & 2 deletions changelog/1950
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
author: Laucans
description: '\nAdd ligo installation through brew package manager. \nBy using \n\n```\nbrew
tap ligolang/ligo https://gitlab.com/ligolang/ligo.git\nbrew install ligolang/ligo/ligo\n\n```\nYou
tap mavryk-network/ligo https://gitlab.com/mavryk-network/ligo.git\nbrew install mavryk-network/ligo/ligo\n\n```\nYou
can also install one of the three last version by targeting the version after \"@\"
: \n\n```\nbrew install ligolang/ligo/[email protected]\n\n```'
: \n\n```\nbrew install mavryk-network/ligo/[email protected]\n\n```'
merge_request: '1950'
title: add brew formula into ligo monorepo
type: added
2 changes: 1 addition & 1 deletion changelog/1974
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
author: ulrikstrid
description: '#### nix improvements\n\nAdd package that provides `ligo` with with `esy`.\nUsage:
`nix run gitlab:ligolang/ligo#withEsy -- install`'
`nix run gitlab:mavryk-network/ligo#withEsy -- install`'
merge_request: '1974'
title: Adds a package wrapped in esy
type: added
2 changes: 1 addition & 1 deletion changelog/2038
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

author: lesenechal.remi & melwyn95
description: '\n \n\n\nFix a bug where top-level let destructuring were causing code to be executed multiple time, as in:\n```\nlet (a,a) =\n let () = Test.log "hello" in\n (1,2)\n\n```\nFix a bug where type parameters were not found ([https://gitlab.com/ligolang/ligo/-/issues/1482](https://gitlab.com/ligolang/ligo/-/issues/1482))`proxy_tickets` code has been changed (see [https://ligolang.org/docs/advanced/testing/#transfers-and-originations-with-tickets](https://ligolang.org/docs/advanced/testing/#transfers-and-originations-with-tickets))\n'
description: '\n \n\n\nFix a bug where top-level let destructuring were causing code to be executed multiple time, as in:\n```\nlet (a,a) =\n let () = Test.log "hello" in\n (1,2)\n\n```\nFix a bug where type parameters were not found ([https://gitlab.com/mavryk-network/ligo/-/issues/1482](https://gitlab.com/mavryk-network/ligo/-/issues/1482))`proxy_tickets` code has been changed (see [https://ligolang.org/docs/advanced/testing/#transfers-and-originations-with-tickets](https://ligolang.org/docs/advanced/testing/#transfers-and-originations-with-tickets))\n'
merge_request: '2038'
title: Add support for patterns in top-level declarations
type: fixed
Expand Down
Loading

0 comments on commit 98abe06

Please sign in to comment.