Kdesktop 638 tmp file remain in tmp after download [Linux] #2665
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linux kDrive desktop CI on x64 Arch | |
on: | |
pull_request: | |
types: [synchronize, review_requested] | |
concurrency: | |
group: linux-${{ github.head_ref }} | |
cancel-in-progress: true | |
env: | |
KDRIVE_TEST_CI_API_TOKEN: ${{ secrets.KDRIVE_TOKEN }} | |
KDRIVE_TEST_CI_ACCOUNT_ID: ${{ vars.KDRIVE_TEST_CI_ACCOUNT_ID }} | |
KDRIVE_TEST_CI_USER_ID: ${{ vars.KDRIVE_TEST_CI_USER_ID }} | |
KDRIVE_TEST_CI_DRIVE_ID: ${{ vars.KDRIVE_TEST_CI_DRIVE_ID }} | |
KDRIVE_TEST_CI_REMOTE_DIR_ID: ${{ vars.KDRIVE_TEST_CI_REMOTE_DIR_ID }} | |
KDRIVE_TEST_CI_LOCAL_PATH: ${{ vars.KDRIVE_TEST_CI_LOCAL_PATH }} | |
KDRIVE_TEST_CI_REMOTE_PATH: ${{ vars.KDRIVE_TEST_CI_REMOTE_PATH }} | |
jobs: | |
build-kDrive: | |
runs-on: [ self-hosted, Linux, X64, desktop-kdrive ] | |
steps: | |
- name: Checkout the PR | |
uses: actions/[email protected] | |
with: | |
ref: ${{ github.head_ref }} | |
submodules: recursive | |
- name: Clean the log directory | |
run : rm -rf /tmp/kDrive-logdir/* | |
- name: Grant building script execute permission | |
run : chmod +x ./infomaniak-build-tools/linux/build-ci-amd64.sh | |
- name: Build kDrive desktop | |
run : ./infomaniak-build-tools/linux/build-ci-amd64.sh -u | |
- name: Grant tests script execute permission | |
run : chmod +x ./infomaniak-build-tools/run-tests.sh | |
- name: Execute tests | |
run : ./infomaniak-build-tools/run-tests.sh | |
- name: Upload tests logs artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: linux-tests-logs | |
path: /tmp/kDrive-logdir/* | |
retention-days: 3 | |
overwrite: true | |
if: always() | |
- name: Clean-up generated code | |
run : rm -rf build-linux |