summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLuca Greco <lgreco@mozilla.com>2019-12-02 23:37:18 +0100
committerMatan Kushner <hello@matchai.me>2019-12-02 17:37:18 -0500
commit337f21375379b7947174e36fad46a3e1ddd5fb18 (patch)
treebb77c6ca9240ae79a59d04d941d7a0965e4cc7c0 /.github
parent33df8ac063607fb40ee977a0df5edf142239bd89 (diff)
feat: Add the hg_branch module (#569)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/workflow.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml
index aa96610a0..7308948cf 100644
--- a/.github/workflows/workflow.yml
+++ b/.github/workflows/workflow.yml
@@ -124,6 +124,17 @@ jobs:
with:
dotnet-version: "2.2.402"
+ # Install Mercurial (pre-installed on linux, installed from pip on macos
+ # and from choco on windows),
+ - name: Install Mercurial (macos)
+ if: matrix.os == 'macOS-latest'
+ env:
+ HGPYTHON3: 1
+ run: pip install mercurial
+ - name: Install Mercurial (windows)
+ if: matrix.os == 'windows-latest'
+ run: choco install hg
+
# Run the ignored tests that expect the above setup
- name: Run all tests
uses: actions-rs/cargo@v1