Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

Raw File Download
Permalink

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
content badge Iframe embedding
swh:1:cnt:ad3750c3fc0adbd744a66346aad132272a14fbd5
Citations

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • content
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
language: c

matrix:
  include:
    # Arm64 builds
    - name: "KEMs: ARM64 + GCC"
      os: linux
      arch: arm64
      compiler: gcc
      before_script:
        - export COMMIT=$(git rev-parse HEAD)
        - git config --replace-all remote.origin.fetch +refs/heads/*:refs/remotes/origin/*
        - git fetch --unshallow
        - git checkout $TRAVIS_BRANCH
        - git reset --hard $COMMIT
      script:
        - travis_wait 60 docker run -e CI=true -e PQCLEAN_SKIP_TESTS -e PQCLEAN_ONLY_TYPES -e PQCLEAN_ONLY_DIFF --rm -v ~/.ccache:/ccache -v `pwd`:`pwd` -w `pwd` "pqclean/ci-container:arm64" /bin/bash -c "
          uname -a &&
          export CCACHE_DIR=/ccache &&
          export CCACHE_NOSTATS=1 &&
          export CCACHE_SLOPPINESS=include_file_mtime &&
          export CC=\"ccache ${CC}\" &&
          pip3 install -r requirements.txt &&
          mkdir test-results &&
          cd test && python3 -m pytest --verbose --junitxml=test-results/pytest/results.xml --numprocesses=auto"
      env:
        PQCLEAN_ONLY_TYPES: kem
        PQCLEAN_ONLY_DIFF: 1
        PQCLEAN_SKIP_TESTS: valgrind,sanitizer
      services:
        - docker
    - name: "KEMs: ARM64 + Clang"
      os: linux
      arch: arm64
      compiler: clang
      before_script:
        - export COMMIT=$(git rev-parse HEAD)
        - git config --replace-all remote.origin.fetch +refs/heads/*:refs/remotes/origin/*
        - git fetch --unshallow
        - git checkout $TRAVIS_BRANCH
        - git reset --hard $COMMIT
      script:
        - travis_wait 60 docker run -e CI=true -e PQCLEAN_SKIP_TESTS -e PQCLEAN_ONLY_TYPES -e PQCLEAN_ONLY_DIFF --rm -v ~/.ccache:/ccache -v `pwd`:`pwd` -w `pwd` "pqclean/ci-container:arm64" /bin/bash -c "
          uname -a &&
          export CCACHE_NOSTATS=1 &&
          export CCACHE_DIR=/ccache &&
          export CCACHE_SLOPPINESS=include_file_mtime &&
          export CC=\"ccache ${CC}\" &&
          pip3 install -r requirements.txt &&
          mkdir test-results &&
          cd test && python3 -m pytest --verbose --junitxml=test-results/pytest/results.xml --numprocesses=auto"
      env:
        PQCLEAN_ONLY_TYPES: kem
        PQCLEAN_ONLY_DIFF: 1
        PQCLEAN_SKIP_TESTS: valgrind,sanitizer
      services:
        - docker
    - name: "Signs: ARM64 + GCC"
      os: linux
      arch: arm64
      compiler: gcc
      before_script:
        - export COMMIT=$(git rev-parse HEAD)
        - git config --replace-all remote.origin.fetch +refs/heads/*:refs/remotes/origin/*
        - git fetch --unshallow
        - git checkout $TRAVIS_BRANCH
        - git reset --hard $COMMIT
      script:
        - travis_wait 60 docker run -e CI=true -e PQCLEAN_SKIP_TESTS -e PQCLEAN_ONLY_TYPES -e PQCLEAN_ONLY_DIFF -e PQCLEAN_SKIP_SCHEMES --rm -v ~/.ccache:/ccache -v `pwd`:`pwd` -w `pwd` "pqclean/ci-container:arm64" /bin/bash -c "
          uname -a &&
          export CCACHE_NOSTATS=1 &&
          export CCACHE_DIR=/ccache &&
          export CCACHE_SLOPPINESS=include_file_mtime &&
          export CC=\"ccache ${CC}\" &&
          pip3 install -r requirements.txt &&
          mkdir test-results &&
          cd test && python3 -m pytest --verbose --junitxml=test-results/pytest/results.xml --numprocesses=auto"
      env:
        PQCLEAN_ONLY_TYPES: sign
        PQCLEAN_ONLY_DIFF: 1
        PQCLEAN_SKIP_SCHEMES: sphincs-haraka-128f-robust,sphincs-haraka-192s-robust,sphincs-sha256-128f-robust,sphincs-sha256-192s-robust,sphincs-shake256-128f-robust,sphincs-shake256-192s-robust,sphincs-haraka-128f-simple,sphincs-haraka-192s-simple,sphincs-sha256-128f-simple,sphincs-sha256-192s-simple,sphincs-shake256-128f-simple,sphincs-shake256-192s-simple,sphincs-haraka-128s-robust,sphincs-haraka-256f-robust,sphincs-sha256-128s-robust,sphincs-sha256-256f-robust,sphincs-shake256-128s-robust,sphincs-shake256-256f-robust,sphincs-haraka-128s-simple,sphincs-haraka-256f-simple,sphincs-sha256-128s-simple,sphincs-sha256-256f-simple,sphincs-shake256-128s-simple,sphincs-shake256-256f-simple,sphincs-haraka-192f-robust,sphincs-haraka-256s-robust,sphincs-sha256-192f-robust,sphincs-sha256-256s-robust,sphincs-shake256-192f-robust,sphincs-shake256-256s-robust,sphincs-haraka-192f-simple,sphincs-haraka-256s-simple,sphincs-sha256-192f-simple,sphincs-sha256-256s-simple,sphincs-shake256-192f-simple,sphincs-shake256-256s-simple
        PQCLEAN_SKIP_TESTS: valgrind,sanitizer
      services:
        - docker
    - name: "signs: ARM64 + Clang"
      os: linux
      arch: arm64
      compiler: clang
      before_script:
        - export COMMIT=$(git rev-parse HEAD)
        - git config --replace-all remote.origin.fetch +refs/heads/*:refs/remotes/origin/*
        - git fetch --unshallow
        - git checkout $TRAVIS_BRANCH
        - git reset --hard $COMMIT
      script:
        - travis_wait 60 docker run -e CI=true -e PQCLEAN_SKIP_TESTS -e PQCLEAN_ONLY_TYPES -e PQCLEAN_ONLY_DIFF=1 -e PQCLEAN_SKIP_SCHEMES --rm -v ~/.ccache:/ccache -v `pwd`:`pwd` -w `pwd` "pqclean/ci-container:arm64" /bin/bash -c "
          uname -a &&
          export CCACHE_NOSTATS=1 &&
          export CCACHE_DIR=/ccache &&
          export CCACHE_SLOPPINESS=include_file_mtime &&
          export CC=\"ccache ${CC}\" &&
          pip3 install -r requirements.txt &&
          mkdir test-results &&
          cd test && python3 -m pytest --verbose --junitxml=test-results/pytest/results.xml --numprocesses=auto"
      env:
        PQCLEAN_ONLY_TYPES: sign
        PQCLEAN_ONLY_DIFF: 1
        PQCLEAN_SKIP_SCHEMES: sphincs-haraka-128f-robust,sphincs-haraka-192s-robust,sphincs-sha256-128f-robust,sphincs-sha256-192s-robust,sphincs-shake256-128f-robust,sphincs-shake256-192s-robust,sphincs-haraka-128f-simple,sphincs-haraka-192s-simple,sphincs-sha256-128f-simple,sphincs-sha256-192s-simple,sphincs-shake256-128f-simple,sphincs-shake256-192s-simple,sphincs-haraka-128s-robust,sphincs-haraka-256f-robust,sphincs-sha256-128s-robust,sphincs-sha256-256f-robust,sphincs-shake256-128s-robust,sphincs-shake256-256f-robust,sphincs-haraka-128s-simple,sphincs-haraka-256f-simple,sphincs-sha256-128s-simple,sphincs-sha256-256f-simple,sphincs-shake256-128s-simple,sphincs-shake256-256f-simple,sphincs-haraka-192f-robust,sphincs-haraka-256s-robust,sphincs-sha256-192f-robust,sphincs-sha256-256s-robust,sphincs-shake256-192f-robust,sphincs-shake256-256s-robust,sphincs-haraka-192f-simple,sphincs-haraka-256s-simple,sphincs-sha256-192f-simple,sphincs-sha256-256s-simple,sphincs-shake256-192f-simple,sphincs-shake256-256s-simple
        PQCLEAN_SKIP_TESTS: valgrind,sanitizer
      services:
        - docker

cache:
  directories:
    - $HOME/Library/Caches/pip
    - $HOME/Library/Caches/Homebrew
    - $HOME/.ccache

before_cache:
  - brew cleanup

#  vim: set ft=yaml ts=2 sw=2 tw=0 et :

Software Heritage — Copyright (C) 2015–2025, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Contact— JavaScript license information— Web API

back to top