diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-12-11 19:07:58 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-12-17 09:17:54 -0800 |
commit | dbf2e3a85796d97f31939cb35a0b9b8347eabcb0 (patch) | |
tree | 6460785ebfe05ce7e28f297021124e7bff30c396 | |
parent | de194d56be2777a0ffa49562019c509ec6a5fad5 (diff) | |
download | subsurface-dbf2e3a85796d97f31939cb35a0b9b8347eabcb0.tar.gz |
GitHub Action/iOS: build in the right directory
The way I test things locally I build in the directory above the subsurface
directory. Let's match this on GitHub as well.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | .github/workflows/ios.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index f459c598e..d170eea90 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -25,8 +25,7 @@ jobs: xzcat Qt-5.14.1-ios.tar.xz | tar -x -C $HOME/Qt -f - - name: build Subsurface-mobile for iOS run: | - mkdir -p $HOME/build - cd $HOME/build + cd $GITHUB_WORKSPACE/.. ln -s $HOME/Qt Qt echo "build for simulator" bash -x $GITHUB_WORKSPACE/packaging/ios/build.sh -simulator |