aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-03-24 20:04:47 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-03-24 20:04:47 +0300
commitf237b35a4077a373e1d92eb297e50e08af1218d2 (patch)
tree9c04d66785013e1f05e8faf12d62ef44661c9bef
parentupdate cmake-common (diff)
downloadaes-tools-f237b35a4077a373e1d92eb297e50e08af1218d2.tar.gz
aes-tools-f237b35a4077a373e1d92eb297e50e08af1218d2.zip
update cmake-common
GitHub Actions workers no longer have pre-built Boost.
-rw-r--r--.github/workflows/ci.yml29
m---------cmake0
2 files changed, 14 insertions, 15 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index de45532..a954dfa 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -28,10 +28,10 @@ jobs:
runs-on: '${{ matrix.os }}'
name: 'Build: ${{ matrix.os }} / ${{ matrix.toolset }} / ${{ matrix.platform }} / asm${{ matrix.use_asm }} / ${{ matrix.configuration }}'
env:
- toolset: '${{ matrix.toolset }}'
- platform: '${{ matrix.platform }}'
- configuration: '${{ matrix.configuration }}'
- boost_version: 1.72.0
+ TOOLSET: '${{ matrix.toolset }}'
+ PLATFORM: '${{ matrix.platform }}'
+ CONFIGURATION: '${{ matrix.configuration }}'
+ BOOST_VERSION: 1.72.0
defaults:
run:
shell: pwsh
@@ -49,42 +49,41 @@ jobs:
with:
platform: '${{ matrix.platform }}'
if: matrix.toolset == 'mingw'
- - name: Boost (MinGW)
+ - name: Build Boost
run: |
cd cmake
- python -m project.ci.github.boost -- --with-filesystem --with-program_options --with-system
- if: matrix.toolset == 'mingw'
+ python -m project.ci.boost -- --with-filesystem --with-program_options --with-system
- name: Build
run: |
cd cmake
- python -m project.ci.github.cmake --install -- -D 'AES_TOOLS_ASM=${{ matrix.use_asm }}'
- - name: Upload the binaries
+ python -m project.ci.cmake --install -- -D 'AES_TOOLS_ASM=${{ matrix.use_asm }}'
+ - name: Upload binaries
uses: actions/upload-artifact@v2
with:
name: 'aes-tools-${{ matrix.os }}-${{ matrix.toolset }}-${{ matrix.platform }}-asm${{ matrix.use_asm }}-${{ matrix.configuration }}'
- path: '${{ runner.workspace }}/install/'
+ path: '${{ runner.workspace }}/build/install/'
- name: Run test/nist.py
run: |
- python test/nist.py --path ../install/bin --log test/nist.log
+ python test/nist.py --path ../build/install/bin --log test/nist.log
Get-Content test/nist.log -Tail 5
if: runner.os == 'Windows'
- name: Run test/cavp.py
run: |
- python test/cavp.py --path ../install/bin --log test/cavp.log
+ python test/cavp.py --path ../build/install/bin --log test/cavp.log
Get-Content test/cavp.log -Tail 5
if: runner.os == 'Windows'
- name: Run test/nist.py --boxes
run: |
- python test/nist.py --path ../install/bin --log test/nist.log --boxes
+ python test/nist.py --path ../build/install/bin --log test/nist.log --boxes
Get-Content test/nist.log -Tail 5
if: runner.os == 'Windows'
- name: Run test/cavp.py --boxes
run: |
- python test/cavp.py --path ../install/bin --log test/cavp.log --boxes
+ python test/cavp.py --path ../build/install/bin --log test/cavp.log --boxes
Get-Content test/cavp.log -Tail 5
if: runner.os == 'Windows'
- name: Run test/file.py
run: |
- python test/file.py --path ../install/bin --log test/file.log
+ python test/file.py --path ../build/install/bin --log test/file.log
Get-Content test/file.log -Tail 5
if: runner.os == 'Windows'
diff --git a/cmake b/cmake
-Subproject d4673a2ff058529488dddf2e0520ee68ec88a0c
+Subproject e5de0b18453dd2fb3bf3e02414ee00ee185d81d