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

Incremental release v0.4.0 #31

Merged
merged 1 commit into from
Jun 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
include:
- project: 'lc-templates/id_tokens'
file: 'id_tokens.yml'
slurm-job:
tags:
- quartz
- batch
variables:
LLNL_SLURM_SCHEDULER_PARAMETERS: "-N 3 -p pbatch"
script:
- module load cmake/3.9.2
- cmake -DMPI=ON -DVELOC_RESOURCE_MANAGER=SLURM
- make VERBOSE=1
- make check
Expand All @@ -16,7 +18,6 @@ lsf-job:
variables:
LLNL_LSF_SCHEDULER_PARAMETERS: "-nnodes 3 -q pbatch"
script:
- module load cmake/3.9.2
- cmake -DMPI=ON -DVELOC_RESOURCE_MANAGER=LSF
- make VERBOSE=1
- make check
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
CMAKE_MINIMUM_REQUIRED(VERSION 3.14)
PROJECT(SPATH VERSION 0.3.0)
PROJECT(SPATH VERSION 0.4.0)

# Mac rpath Policy
IF(POLICY CMP0042)
Expand Down
2 changes: 1 addition & 1 deletion src/spath.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ extern "C" {
#define SPATH_SUCCESS (0)
#define SPATH_FAILURE (1)

#define SPATH_VERSION "0.3.0"
#define SPATH_VERSION "0.4.0"

/* TODO: for formatted strings, use special %| character (or something
* similar) to denote directories in portable way */
Expand Down
Loading