Skip to content

Commit

Permalink
Tools 2790 gen conf (#29)
Browse files Browse the repository at this point in the history
* feat: TOOLS-2790 add `generate` command

* dep: Update tools-common-go
  • Loading branch information
Jesse S authored Jan 19, 2024
1 parent 7ed9c93 commit b00ca57
Show file tree
Hide file tree
Showing 52 changed files with 1,240 additions and 966 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Test

on:
push:
branches: [main]
branches: ["*"]
pull_request:
branches: [main]

Expand Down Expand Up @@ -30,7 +30,7 @@ jobs:
run: |
make coverage
env:
FEATKEY : /tmp
FEATKEY_DIR : /tmp
ASC_DOCKER_USER : ${{secrets.DOCKER_USER}}
ASC_DOCKER_PASS : ${{secrets.DOCKER_PASS}}
- name: Upload coverage to Codecov
Expand Down
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "schemas"]
path = schema/schemas
url = https://github.com/aerospike/schemas
url = https://github.com/aerospike/schemas
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,21 +70,21 @@ make unit
### Integration Tests

Integration tests require that docker is installed and running.
A path to an Aerospike feature key file should be defined at the `FEATKEY` environment variable.
A path to an Aerospike feature key file should be defined at the `FEATKEY_DIR` environment variable.
For more information about the feature key file see the [feature-key docs](https://docs.aerospike.com/server/operations/configure/feature-key).

```shell
FEATKEY=/path/to/aerospike/features.conf make integration
FEATKEY_DIR=/path/to/aerospike/features/dir make integration
```

### All Tests

```shell
FEATKEY=/path/to/aerospike/features.conf make test
FEATKEY_DIR=/path/to/aerospike/features/dir make test
```

### Test Coverage

```shell
FEATKEY=/path/to/aerospike/features.conf make view-coverage
FEATKEY_DIR=/path/to/aerospike/features/dir make view-coverage
```
256 changes: 0 additions & 256 deletions asconf/asconf.go

This file was deleted.

Loading

0 comments on commit b00ca57

Please sign in to comment.