From 544b39a8a5ea156f934c0cc41d774fe047409063 Mon Sep 17 00:00:00 2001 From: Tristan Koh Date: Thu, 10 Jun 2021 12:00:57 +0800 Subject: changed build wheels repo link from master to main --- .github/workflows/build-python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/build-python-package.yml b/.github/workflows/build-python-package.yml index 6326821dc..67cbba6dd 100644 --- a/.github/workflows/build-python-package.yml +++ b/.github/workflows/build-python-package.yml @@ -25,7 +25,7 @@ jobs: - name: Install cibuildwheel run: | - python -m pip install git+https://github.com/joerick/cibuildwheel.git@master + python -m pip install git+https://github.com/joerick/cibuildwheel.git@main - name: Install build tools for OSX if: startsWith(matrix.os, 'macos') -- cgit v1.2.3 From 889be1ab8ed6a71feea211ff8ce1ca0ed72d4d0a Mon Sep 17 00:00:00 2001 From: Andreas Källberg Date: Thu, 17 Jun 2021 16:42:04 +0800 Subject: Enable tests in github actions --- .github/workflows/build-all-versions.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to '.github') diff --git a/.github/workflows/build-all-versions.yml b/.github/workflows/build-all-versions.yml index 46bd05b23..fde8b2157 100644 --- a/.github/workflows/build-all-versions.yml +++ b/.github/workflows/build-all-versions.yml @@ -56,9 +56,9 @@ jobs: cabal configure --enable-tests --enable-benchmarks --test-show-details=direct cabal build all - # - name: Test - # run: | - # cabal test all + - name: Test + run: | + cabal test all stack: name: stack / ghc ${{ matrix.ghc }} @@ -90,6 +90,6 @@ jobs: stack build --system-ghc --stack-yaml stack-ghc${{ matrix.ghc }}.yaml # stack build --system-ghc --test --bench --no-run-tests --no-run-benchmarks - # - name: Test - # run: | - # stack test --system-ghc + - name: Test + run: | + stack test --system-ghc --stack-yaml stack-ghc${{ matrix.ghc }}.yaml -- cgit v1.2.3 From 02671cafd0049f0793206a7d13c47a74e89ae2e8 Mon Sep 17 00:00:00 2001 From: Andreas Källberg Date: Thu, 17 Jun 2021 20:20:18 +0800 Subject: Disable cabal tests The test suite isn't currently able to find the gf executable on cabal --- .github/workflows/build-all-versions.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.github') diff --git a/.github/workflows/build-all-versions.yml b/.github/workflows/build-all-versions.yml index fde8b2157..fca637189 100644 --- a/.github/workflows/build-all-versions.yml +++ b/.github/workflows/build-all-versions.yml @@ -56,9 +56,9 @@ jobs: cabal configure --enable-tests --enable-benchmarks --test-show-details=direct cabal build all - - name: Test - run: | - cabal test all + # - name: Test + # run: | + # cabal test all stack: name: stack / ghc ${{ matrix.ghc }} -- cgit v1.2.3