diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2019-12-31 19:07:07 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-01-01 15:11:20 -0800 |
commit | 06de2a91ce80ae2af10d82ee9c63f4141aca50b6 (patch) | |
tree | d0cf146a5936f15316f4342080ddc1038858546f /.github | |
parent | f87275b80450aa2590c013be13f5f1f2a93f3909 (diff) | |
download | subsurface-06de2a91ce80ae2af10d82ee9c63f4141aca50b6.tar.gz |
GitHub Actions: use custom logins for cloud tests
This should reduce the risk of stepping on top of each other.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/linux-bionic-5.9.yml | 3 | ||||
-rw-r--r-- | .github/workflows/linux-eoan-5.12.yml | 3 | ||||
-rw-r--r-- | .github/workflows/mac.yml | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/linux-bionic-5.9.yml b/.github/workflows/linux-bionic-5.9.yml index d2efc4f82..ac7050632 100644 --- a/.github/workflows/linux-bionic-5.9.yml +++ b/.github/workflows/linux-bionic-5.9.yml @@ -30,6 +30,9 @@ jobs: qtquickcontrols2-5-dev xvfb - name: run build + env: + SSRF_USER_EMAIL: ssrftest-u18@hohndel.org + SSRF_USER_PASSWORD: ${{ secrets.cloudu18 }} run: | cd .. bash -x subsurface/scripts/build.sh -desktop -build-with-webkit diff --git a/.github/workflows/linux-eoan-5.12.yml b/.github/workflows/linux-eoan-5.12.yml index 12b6f56c8..722d2a329 100644 --- a/.github/workflows/linux-eoan-5.12.yml +++ b/.github/workflows/linux-eoan-5.12.yml @@ -18,6 +18,9 @@ jobs: uses: actions/checkout@v1 - name: run build + env: + SSRF_USER_EMAIL: ssrftest-u19@hohndel.org + SSRF_USER_PASSWORD: ${{ secrets.cloudu19 }} run: | cd .. bash -x subsurface/.github/workflows/scripts/ubuntu-in-container-build.sh diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index ec0af35e7..2c53b329b 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -21,6 +21,9 @@ jobs: curl --output Qt-5.13.0-mac.tar.xz https://f002.backblazeb2.com/file/Subsurface-Travis/Qt-5.13.0-mac.tar.xz tar -xJ -C Qt/5.13.0 -f Qt-5.13.0-mac.tar.xz - name: build Subsurface + env: + SSRF_USER_EMAIL: ssrftest-mac@hohndel.org + SSRF_USER_PASSWORD: ${{ secrets.cloudmac }} run: | cd ${GITHUB_WORKSPACE}/.. export QT_ROOT=${GITHUB_WORKSPACE}/Qt/5.13.0/clang_64 |