mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 11:27:43 +03:00
Merge pull request #443 from str4d/ci-fix-keygen-interop
CI: Fix interop tests that use `{rage, age}-keygen`
This commit is contained in:
commit
53972bdccf
1 changed files with 10 additions and 3 deletions
13
.github/workflows/interop.yml
vendored
13
.github/workflows/interop.yml
vendored
|
@ -23,7 +23,9 @@ jobs:
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: rage
|
name: rage
|
||||||
path: target/release/rage
|
path: |
|
||||||
|
target/release/rage
|
||||||
|
target/release/rage-keygen
|
||||||
|
|
||||||
- name: Update FiloSottile/age status with result
|
- name: Update FiloSottile/age status with result
|
||||||
if: always() && github.event.action == 'age-interop-request'
|
if: always() && github.event.action == 'age-interop-request'
|
||||||
|
@ -69,10 +71,13 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
cd $GITHUB_WORKSPACE/go-age/age
|
cd $GITHUB_WORKSPACE/go-age/age
|
||||||
go build filippo.io/age/cmd/age
|
go build filippo.io/age/cmd/age
|
||||||
|
go build filippo.io/age/cmd/age-keygen
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: age
|
name: age
|
||||||
path: go-age/age/age
|
path: |
|
||||||
|
go-age/age/age
|
||||||
|
go-age/age/age-keygen
|
||||||
|
|
||||||
- name: Update FiloSottile/age status with result
|
- name: Update FiloSottile/age status with result
|
||||||
if: always() && github.event.action == 'age-interop-request'
|
if: always() && github.event.action == 'age-interop-request'
|
||||||
|
@ -110,7 +115,9 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: age
|
name: age
|
||||||
- run: chmod +x rage
|
- run: chmod +x rage
|
||||||
|
- run: chmod +x rage-keygen
|
||||||
- run: chmod +x age
|
- run: chmod +x age
|
||||||
|
- run: chmod +x age-keygen
|
||||||
|
|
||||||
# Prepare the test environment
|
# Prepare the test environment
|
||||||
- name: Install dos2unix for simulating Windows files
|
- name: Install dos2unix for simulating Windows files
|
||||||
|
@ -195,7 +202,7 @@ jobs:
|
||||||
- name: Keygen prevents overwriting an existing file
|
- name: Keygen prevents overwriting an existing file
|
||||||
run: |
|
run: |
|
||||||
touch do_not_overwrite_key.txt
|
touch do_not_overwrite_key.txt
|
||||||
if $(${{ matrix.alice }}-keygen -o do_not_overwrite_key.txt); then
|
if $(./${{ matrix.alice }}-keygen -o do_not_overwrite_key.txt); then
|
||||||
false
|
false
|
||||||
else
|
else
|
||||||
true
|
true
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue