ci: Fix hash path.

setup.py
Pierre-Antoine Rouby 2024-03-22 14:54:15 +01:00
parent 9f4c759ea3
commit d0134d6415
1 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
# .gitlab-ci.yml -- Pamhyr gitlab-ci # .gitlab-ci.yml -- Pamhyr gitlab-ci
# Copyright (C) 2023 INRAE # Copyright (C) 2023-2024 INRAE
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by
@ -416,10 +416,10 @@ linux-build-hash:
- if: $CI_COMMIT_BRANCH == 'ci-test' || $CI_COMMIT_BRANCH == 'master' || $CI_COMMIT_TAG - if: $CI_COMMIT_BRANCH == 'ci-test' || $CI_COMMIT_BRANCH == 'master' || $CI_COMMIT_TAG
script: script:
- cd linux - cd linux
- sha256sum -b pamhyr/pamhyr/pamhyr > pamhyr/pamhyr/pamhyr.sha256 - sha256sum -b pamhyr/pamhyr > pamhyr/pamhyr.sha256
artifacts: artifacts:
paths: paths:
- linux/pamhyr/pamhyr/pamhyr.sha256 - linux/pamhyr/pamhyr.sha256
windows-build-hash: windows-build-hash:
stage: hash stage: hash
@ -433,10 +433,10 @@ windows-build-hash:
- if: $CI_COMMIT_BRANCH == 'ci-test' || $CI_COMMIT_BRANCH == 'master' || $CI_COMMIT_TAG - if: $CI_COMMIT_BRANCH == 'ci-test' || $CI_COMMIT_BRANCH == 'master' || $CI_COMMIT_TAG
script: script:
- cd windows - cd windows
- sha256sum -b pamhyr/pamhyr/pamhyr.exe > pamhyr/pamhyr/pamhyr.exe.sha256 - sha256sum -b pamhyr/pamhyr.exe > pamhyr/pamhyr.exe.sha256
artifacts: artifacts:
paths: paths:
- windows/pamhyr/pamhyr/pamhyr.exe.sha256 - windows/pamhyr/pamhyr.exe.sha256
pkg-hash: pkg-hash:
stage: hash stage: hash