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

use preview versions of oscal tools #1072

Merged
merged 23 commits into from
Jan 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
d7b0623
fix constraints (#1070)
wandmagic Jan 7, 2025
b4d3df5
use preview versions of oscal tools
wandmagic Jan 7, 2025
dd20034
hotfix missing expect tag
wandmagic Jan 8, 2025
60b3c50
Add the inter-boundary-component-has-information-type constraint (#1066)
DimitriZhurkin Jan 8, 2025
18a02c9
Hotfix styles (#1076)
wandmagic Jan 8, 2025
26f4f19
use latest server build
wandmagic Jan 8, 2025
1f55a73
Correct constraint message. (#1085)
Gabeblis Jan 9, 2025
608080d
add additional sample content (#1081)
wandmagic Jan 9, 2025
8c1a343
Add new metapath target to 'security-level' constraint (#1079)
Gabeblis Jan 9, 2025
5e3f386
make build (#1080)
wandmagic Jan 10, 2025
60ba7f7
add inventory item constraints (#1063)
wandmagic Jan 10, 2025
f556138
Add `inventory-item-has-software-version` constraint (#1039)
Gabeblis Jan 7, 2025
b9ca17a
Add 'inventory-item-has-software-name' constraint and tests (#1038)
Gabeblis Jan 7, 2025
ee65d47
use preview versions of oscal tools
wandmagic Jan 7, 2025
d7af65c
hotfix missing expect tag
wandmagic Jan 8, 2025
f10ace6
use latest server build
wandmagic Jan 8, 2025
7c6b0f2
Merge branch 'canary' of https://github.com/wandmagic/fedramp-automat…
wandmagic Jan 10, 2025
ed5d082
fix order and missing expect closing tag
wandmagic Jan 13, 2025
8898199
Update fedramp-external-constraints.xml
wandmagic Jan 13, 2025
8993b2a
use versions matrix for snapshot testing
wandmagic Jan 13, 2025
c01afed
better action names
wandmagic Jan 13, 2025
f66de5d
Update module.mk
wandmagic Jan 13, 2025
71897c4
Update .tool-versions
wandmagic Jan 13, 2025
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
8 changes: 7 additions & 1 deletion .github/workflows/run-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ jobs:
# one job that runs tests
run-tests:
runs-on: ubuntu-20.04
# Checkout repository and its submodules
strategy:
matrix:
version: ['latest', 'snapshot']
name: Run style tests (${{ matrix.version }})
# Checkout repository and its submodules
steps:
# Check-out the repository under $GITHUB_WORKSPACE
- name: Checkout repository
Expand All @@ -38,6 +42,8 @@ jobs:
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install OSCAL CLI
env:
USE_SNAPSHOT: ${{ matrix.version == 'snapshot' && '1' || '' }}
run: |
make configure
- name: Run Lint tests
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
branches:
- master
- develop
- canary
- 'feature/**' # This will match any branch starting with "feature"

pull_request:
Expand All @@ -20,7 +21,9 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-2022]
version: ['latest', 'snapshot']
runs-on: ${{ matrix.os }}
name: Unit Tests (${{ matrix.os }}, ${{ matrix.version }})
# Checkout repository and its submodules
steps:
# Check-out the repository under $GITHUB_WORKSPACE
Expand All @@ -42,6 +45,8 @@ jobs:
with:
node-version: ${{ steps.nvmrc.outputs.NODE_VERSION }}
- name: Install OSCAL CLI
env:
USE_SNAPSHOT: ${{ matrix.version == 'snapshot' && '1' || '' }}
run: |
make init-validations
- name: Run Cucumber tests
Expand Down
4 changes: 3 additions & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
oscal-cli 2.4.0
oscal-server v1.0.0-SNAPSHOT-6363f60-20241202160440
oscal-cli-snapshot 2.5.0-SNAPSHOT
oscal-server v1.0.0-SNAPSHOT-6363f60-20241202160440
oscal-server-snapshot v1.0.0-SNAPSHOT-6773e8b-20250108155951
Loading
Loading