about summary refs log tree commit diff stats
path: root/.github/workflows
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2022-08-18 15:20:44 +0200
committerGitHub <noreply@github.com>2022-08-18 15:20:44 +0200
commit0864bc68d7037abd41cf75901ffaa0cd8bceb04d (patch)
tree9c69ca61bebef47e73b86f92e60511cec62b8a05 /.github/workflows
parent712fdc475f9f36527b71c8ca8e4034e57b59f84e (diff)
parentdba9f3f82109220a15a3014ae29b65179a46670a (diff)
downloadprofani-tty-0864bc68d7037abd41cf75901ffaa0cd8bceb04d.tar.gz
Merge pull request #1747 from profanity-im/ci-test
Re-enable Tumbleweed and MacOS ci
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/main.yml26
1 files changed, 13 insertions, 13 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index edf1cc57..dc73b14b 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -12,7 +12,7 @@ jobs:
 
     strategy:
       matrix:
-        flavor: [debian, fedora, ubuntu]
+        flavor: [debian, fedora, tumbleweed, ubuntu]
 
     name: Linux
     steps:
@@ -22,18 +22,18 @@ jobs:
           docker build -f Dockerfile.${{ matrix.flavor }} -t profanity .
           docker run profanity ./ci-build.sh
 
-#  macos:
-#    runs-on: macos-latest
-#    name: macOS
-#    steps:
-#      - uses: actions/checkout@v2
-#      - name: Run brew bundle
-#        run: brew bundle
-#      - name: Run tests
-#        env:
-#          # Ensure that "keg-only" Homebrew versions are used.
-#          PKG_CONFIG_PATH: "/usr/local/opt/ncurses/lib/pkgconfig:/usr/local/opt/expat/lib/pkgconfig:/usr/local/opt/curl/lib/pkgconfig:/usr/local/opt/openssl/lib/pkgconfig:/usr/local/opt/libffi/lib/pkgconfig:/usr/local/opt/sqlite/lib/pkgconfig:$PKG_CONFIG_PATH"
-#        run: ./ci-build.sh
+  macos:
+    runs-on: macos-latest
+    name: macOS
+    steps:
+      - uses: actions/checkout@v2
+      - name: Run brew bundle
+        run: brew bundle
+      - name: Run tests
+        env:
+          # Ensure that "keg-only" Homebrew versions are used.
+          PKG_CONFIG_PATH: "/usr/local/opt/ncurses/lib/pkgconfig:/usr/local/opt/expat/lib/pkgconfig:/usr/local/opt/curl/lib/pkgconfig:/usr/local/opt/openssl/lib/pkgconfig:/usr/local/opt/libffi/lib/pkgconfig:/usr/local/opt/sqlite/lib/pkgconfig:$PKG_CONFIG_PATH"
+        run: ./ci-build.sh
 
   code-style:
     runs-on: ubuntu-20.04