Skip to content

Commit

Permalink
Merge remote-tracking branch 'sexp/release-2.6.3-sexp'
Browse files Browse the repository at this point in the history
  • Loading branch information
JobPetrovcic committed Apr 6, 2024
2 parents 0513851 + b9dfb8f commit dc0d8a3
Show file tree
Hide file tree
Showing 43 changed files with 1,679 additions and 552 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,25 @@ jobs:
sha: ${{ steps.vars.outputs.sha }}
runs-on: ${{ matrix.os }}
steps:
- if: ${{ runner.os == 'macOS' }}
name: Set up for the ICU library (macOS)
run: |
ICU4C="$(brew --prefix)/opt/icu4c"
echo "${ICU4C}/bin" >> "${GITHUB_PATH}"
ICU_DIR="${ICU4C}/lib"
echo "ICU_DIR=${ICU_DIR}"
echo "ICU_DIR=${ICU_DIR}" >> "${GITHUB_ENV}"
echo "PKG_CONFIG_PATH=${ICU_DIR}/pkgconfig" >> "${GITHUB_ENV}"
- if: ${{ runner.os != 'Windows' }}
name: Determine the ICU version (Linux, macOS)
run: |
uconv --version
ICU_VER="$(uconv --version | sed -ne 's/uconv v.* ICU \([0-9][0-9.]*\)/\1/p')"
echo "ICU_VER=${ICU_VER}"
echo "ICU_VER=${ICU_VER}" >> "${GITHUB_ENV}"
ICU_MAJOR_VER="$(cut -d '.' -f 1 <<< ${ICU_VER})"
echo "ICU_MAJOR_VER=${ICU_MAJOR_VER}"
echo "ICU_MAJOR_VER=${ICU_MAJOR_VER}" >> "${GITHUB_ENV}"
- name: Check out the master branch
uses: actions/checkout@v4
- id: vars
Expand Down
7 changes: 0 additions & 7 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,7 +0,0 @@
[submodule "std-lib"]
path = std-lib
url = https://github.com/agda/agda-stdlib
branch = master
[submodule "cubical"]
path = cubical
url = https://github.com/agda/cubical
Loading

0 comments on commit dc0d8a3

Please sign in to comment.