summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2020-12-23 13:11:20 +0000
committerEmmanuele Bassi <ebassi@gnome.org>2020-12-23 13:11:20 +0000
commit14ab6c6bb8532e3b2c5c248fe77ac61b0b0e5ecd (patch)
tree3452c80aeabaad5307803edad1d777bb63b5d39b /.github/workflows/ci.yml
parentc4520d0a7238cdf6ff2b49a37f28b446a5550024 (diff)
downloadlibepoxy-14ab6c6bb8532e3b2c5c248fe77ac61b0b0e5ecd.tar.gz
ci: Use scripts for GitHub Actions
Do not share them with the Travis pipelines.
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index edd6c5b..4086757 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -43,6 +43,6 @@ jobs:
python -m pip install --upgrade pip
pip3 install meson
- if: runner.os == 'macOS'
- run: /bin/sh -c "CC=${{ matrix.compiler }} .travis/epoxy-ci-osx.sh ${{ matrix.build-opts }}"
+ run: /bin/sh -c "CC=${{ matrix.compiler }} .github/scripts/epoxy-ci-osx.sh ${{ matrix.build-opts }}"
- if: runner.os == 'Linux'
- run: /bin/sh -c "CC=${{ matrix.compiler }} .travis/epoxy-ci-linux.sh ${{ matrix.build-opts }}"
+ run: /bin/sh -c "CC=${{ matrix.compiler }} .github/scripts/epoxy-ci-linux.sh ${{ matrix.build-opts }}"