Browse Source

Fixed GitHub Actions CI build for pull requests. (#521)

Signed-off-by: RICCIARDI-Adrien <adrien.ricciardi@hotmail.fr>
master
Adrien RICCIARDI 3 years ago
committed by GitHub
parent
commit
940fa288f6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      .github/workflows/build.yaml

6
.github/workflows/build.yaml

@ -9,7 +9,6 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TRAVIS_BUILD_NUMBER: ${{ github.run_number }}
BRANCH: ${{ github.ref_name }}
VERSION: continuous
steps:
- name: Configure build machine
@ -21,7 +20,10 @@ jobs:
- name: Checkout sources
run: |
# Can't use actions/checkout@v2 action here because Ubuntu 16.04 git version is too old, so the action downloads an archive instead of a git repository, and this prevents linuxdeployqt from finding the commit it is built from
git clone --depth=1 https://github.com/${{ github.repository }} --branch=${{ github.ref_name }} .
# Retrieve the correct branch name according to the build event (push or pull_request)
if [ -z "${{ github.head_ref }}" ]; then BRANCH=${{ github.ref_name }}; else BRANCH=${{ github.head_ref }}; fi
echo "Cloning from branch $BRANCH..."
git clone --depth=1 https://github.com/${{ github.repository }} --branch=$BRANCH .
- name: Environment tests
run: ./tests/tests-environment.sh
- name: CI tests

Loading…
Cancel
Save