Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

avoid that versions/2021.06/init is included in init tarball #249

Merged
merged 1 commit into from
May 18, 2023

Conversation

boegel
Copy link
Contributor

@boegel boegel commented May 18, 2023

This avoids that the versions/2021.06/init directory that was added in #246 gets included in the init tarball, which is not the intention:

$ tar tfvz eessi-2021.12-init-1684395250.tar.gz
drwxrwxr-x boegel/boegel 0 2023-05-18 09:34 2021.12/
drwxrwxr-x boegel/boegel 0 2023-05-18 09:27 2021.12/init/
-rw-rw-r-- boegel/boegel 3411 2023-05-18 09:27 2021.12/init/eessi_environment_variables
-rw-rw-r-- boegel/boegel  372 2023-05-18 09:27 2021.12/init/eessi_defaults
-rw-rw-r-- boegel/boegel 1257 2023-05-18 09:27 2021.12/init/bash
-rw-rw-r-- boegel/boegel 1587 2023-05-18 09:27 2021.12/init/README.md
-rwxrwxr-x boegel/boegel 4410 2023-05-18 09:27 2021.12/init/eessi_software_subdir_for_host.py
-rw-rw-r-- boegel/boegel 3086 2023-05-18 09:27 2021.12/init/test.py
-rwxrwxr-x boegel/boegel 5206 2023-05-18 09:27 2021.12/init/eessi_archdetect.sh
-rw-rw-r-- boegel/boegel  874 2023-05-18 09:27 2021.12/init/minimal_eessi_env
drwxrwxr-x boegel/boegel    0 2023-05-18 09:27 2021.12/init/arch_specs/
-rwxrwxr-x boegel/boegel  333 2023-05-18 09:27 2021.12/init/arch_specs/eessi_arch_arm.spec
-rwxrwxr-x boegel/boegel  157 2023-05-18 09:27 2021.12/init/arch_specs/eessi_arch_ppc.spec
-rwxrwxr-x boegel/boegel  450 2023-05-18 09:27 2021.12/init/arch_specs/eessi_arch_x86.spec
drwxrwxr-x boegel/boegel    0 2023-05-18 09:27 2021.12/init/Magic_Castle/
-rw-rw-r-- boegel/boegel 1307 2023-05-18 09:27 2021.12/init/Magic_Castle/bash
-rwxrwxr-x boegel/boegel  801 2023-05-18 09:27 2021.12/init/Magic_Castle/eessi_pilot_python3
drwxrwxr-x boegel/boegel    0 2023-05-18 09:34 2021.12/versions/
drwxrwxr-x boegel/boegel    0 2023-05-18 09:34 2021.12/versions/2021.06/
drwxrwxr-x boegel/boegel    0 2023-05-18 09:27 2021.12/versions/2021.06/init/
-rw-rw-r-- boegel/boegel  140 2023-05-18 09:27 2021.12/versions/2021.06/init/bash
-rwxrwxr-x boegel/boegel  807 2023-05-18 09:27 2021.12/versions/2021.06/init/print_deprecation_warning.sh
drwxrwxr-x boegel/boegel    0 2023-05-18 09:27 2021.12/versions/2021.06/init/Magic_Castle/
-rw-rw-r-- boegel/boegel  153 2023-05-18 09:27 2021.12/versions/2021.06/init/Magic_Castle/bash

only the top-level init dir should be included:

$ tar tfvz eessi-2021.12-init-1684396813.tar.gz
drwxrwxr-x boegel/boegel 0 2023-05-18 10:00 2021.12/
drwxrwxr-x boegel/boegel 0 2023-05-18 09:27 2021.12/init/
-rw-rw-r-- boegel/boegel 3411 2023-05-18 09:27 2021.12/init/eessi_environment_variables
-rw-rw-r-- boegel/boegel  372 2023-05-18 09:27 2021.12/init/eessi_defaults
-rw-rw-r-- boegel/boegel 1257 2023-05-18 09:27 2021.12/init/bash
-rw-rw-r-- boegel/boegel 1587 2023-05-18 09:27 2021.12/init/README.md
-rwxrwxr-x boegel/boegel 4410 2023-05-18 09:27 2021.12/init/eessi_software_subdir_for_host.py
-rw-rw-r-- boegel/boegel 3086 2023-05-18 09:27 2021.12/init/test.py
-rwxrwxr-x boegel/boegel 5206 2023-05-18 09:27 2021.12/init/eessi_archdetect.sh
-rw-rw-r-- boegel/boegel  874 2023-05-18 09:27 2021.12/init/minimal_eessi_env
drwxrwxr-x boegel/boegel    0 2023-05-18 09:27 2021.12/init/arch_specs/
-rwxrwxr-x boegel/boegel  333 2023-05-18 09:27 2021.12/init/arch_specs/eessi_arch_arm.spec
-rwxrwxr-x boegel/boegel  157 2023-05-18 09:27 2021.12/init/arch_specs/eessi_arch_ppc.spec
-rwxrwxr-x boegel/boegel  450 2023-05-18 09:27 2021.12/init/arch_specs/eessi_arch_x86.spec
drwxrwxr-x boegel/boegel    0 2023-05-18 09:27 2021.12/init/Magic_Castle/
-rw-rw-r-- boegel/boegel 1307 2023-05-18 09:27 2021.12/init/Magic_Castle/bash
-rwxrwxr-x boegel/boegel  801 2023-05-18 09:27 2021.12/init/Magic_Castle/eessi_pilot_python3

@boegel boegel requested a review from bedroge May 18, 2023 08:04
@eessi-bot
Copy link

eessi-bot bot commented May 18, 2023

Instance eessi-bot-citc-aws is configured to build:

  • arch x86_64/generic for repo EESSI-pilot
  • arch x86_64/intel/haswell for repo EESSI-pilot
  • arch x86_64/intel/skylake_avx512 for repo EESSI-pilot
  • arch x86_64/amd/zen2 for repo EESSI-pilot
  • arch x86_64/amd/zen3 for repo EESSI-pilot
  • arch aarch64/generic for repo EESSI-pilot
  • arch aarch64/graviton2 for repo EESSI-pilot
  • arch aarch64/graviton3 for repo EESSI-pilot

@bedroge bedroge merged commit 82a5160 into EESSI:main May 18, 2023
@boegel boegel deleted the fix_create_directory_tarballs_init branch May 18, 2023 08:54
trz42 pushed a commit to trz42/software-layer that referenced this pull request Jan 22, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants