Skip to content

Commit 1233290

Browse files
authored
Merge pull request #13 from airext/feature/workflow
Setup workflows
2 parents 3ab13bf + b228e3d commit 1233290

File tree

4 files changed

+163
-29
lines changed

4 files changed

+163
-29
lines changed

.github/workflows/dryrun.yml

+108
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
name: dryrun
2+
3+
on: [push, pull_request]
4+
5+
env:
6+
air-sdk-path: ${{ github.workspace }}\air_sdk
7+
air-sdk-version: "32.0"
8+
9+
jobs:
10+
test-on-win:
11+
runs-on: [windows-latest]
12+
env:
13+
air-sdk-path: ${{ github.workspace }}\air_sdk
14+
air-sdk-version: "32.0"
15+
visual-studio-path: "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Enterprise"
16+
steps:
17+
- uses: actions/checkout@v2
18+
- name: Set up JDK 1.8
19+
uses: actions/setup-java@v1
20+
with:
21+
java-version: 1.8
22+
- name: Cache AIR SDK
23+
id: cache-air-sdk
24+
uses: actions/cache@v1
25+
env:
26+
cache-name: cache-air-sdk
27+
with:
28+
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ env.air-sdk-version }}
29+
path: ${{ env.air-sdk-path }}
30+
restore-keys: |
31+
${{ runner.os }}-build-${{ env.cache-name }}-${{ env.air-sdk-version }}
32+
${{ runner.os }}-build-${{ env.cache-name }}
33+
- name: Download AIR SDK
34+
if: steps.cache-air-sdk.outputs.cache-hit != 'true'
35+
run: |
36+
New-Item -Name ".\air_sdk" -ItemType "directory" -Force | Out-Null
37+
Invoke-WebRequest "http://airdownload.adobe.com/air/win/download/${env:air-sdk-version}/AIRSDK_Compiler.zip" -OutFile ".\AIRSDK_Compiler.zip"
38+
Expand-Archive -Path ".\AIRSDK_Compiler.zip" -DestinationPath "${{ env.air-sdk-path }}" | Out-Null
39+
echo AIR SDK expanded into "${{ env.air-sdk-path }}"
40+
- name: Copy keystore.p12
41+
id: copy_keystore
42+
uses: timheuer/[email protected]
43+
with:
44+
fileName: keystore.p12
45+
encodedString: ${{ secrets.keystore }}
46+
- name: Build Script
47+
working-directory: build
48+
run: ant -debug -verbose -noinput "-Dair.sdk=${{ env.air-sdk-path }}" "-Dkeystore.file=${{ steps.copy_keystore.outputs.filePath }}" "-Dkeystore.password=${{ secrets.password }}" "-Dvisual.studio=${{ env.visual-studio-path }}" "-Dis.debug=false" "-Dbuild.number=${{ github.run_number }}" package.on.win
49+
- name: Unit Tests
50+
id: unit-tests
51+
working-directory: build
52+
run: ant -debug -verbose -noinput "-Dair.sdk=${{ env.air-sdk-path }}" "-Dkeystore.file=${{ steps.copy_keystore.outputs.filePath }}" "-Dkeystore.password=${{ secrets.password }}" "-Dvisual.studio=${{ env.visual-studio-path }}" "-Dis.debug=false" "-Dbuild.number=${{ github.run_number }}" test.on.win
53+
- name: Upload Tests Failure Detail
54+
if: failure()
55+
uses: actions/upload-artifact@v1
56+
with:
57+
name: tests_failure_on_win.txt
58+
path: build/test/tests_failure.txt
59+
60+
test-on-mac:
61+
runs-on: [macos-latest]
62+
steps:
63+
- uses: actions/checkout@v2
64+
- name: Set up JDK 1.8
65+
uses: actions/setup-java@v1
66+
with:
67+
java-version: 1.8
68+
- name: Cache AIR SDK
69+
id: cache-air-sdk
70+
uses: actions/cache@v1
71+
env:
72+
cache-name: cache-air-sdk
73+
with:
74+
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ env.air-sdk-version }}
75+
path: ${{ env.air-sdk-path }}
76+
restore-keys: |
77+
${{ runner.os }}-build-${{ env.cache-name }}-${{ env.air-sdk-version }}
78+
${{ runner.os }}-build-${{ env.cache-name }}
79+
- name: Download AIR SDK
80+
if: steps.cache-air-sdk.outputs.cache-hit != 'true'
81+
run: |
82+
mkdir -p ${{ env.air-sdk-path }}
83+
wget -O AIRSDK_Compiler.dmg https://airdownload.adobe.com/air/mac/download/${{ env.air-sdk-version }}/AIRSDK_Compiler.dmg
84+
hdiutil attach AIRSDK_Compiler.dmg -nobrowse
85+
cp -rf /Volumes/AIR\ SDK/* ${{ env.air-sdk-path }}
86+
- name: Install ANT
87+
run: brew install ant
88+
- name: Copy keystore.p12
89+
id: copy_keystore
90+
uses: timheuer/[email protected]
91+
with:
92+
fileName: keystore.p12
93+
encodedString: ${{ secrets.keystore }}
94+
- name: Build Script
95+
working-directory: build
96+
run: ant -debug -verbose -noinput -Dair.sdk=${{ env.air-sdk-path }} -Dkeystore.file=${{ steps.copy_keystore.outputs.filePath }} -Dkeystore.password=${{ secrets.password }} -Dvisual.studio=${{ env.visual-studio-path }} -Dis.debug=false -Dbuild.number=${{ github.run_number }} package.on.mac
97+
- name: Unit Tests
98+
id: unit-tests
99+
working-directory: build
100+
run: ant -debug -verbose -noinput -Dair.sdk=${{ env.air-sdk-path }} -Dkeystore.file=${{ steps.copy_keystore.outputs.filePath }} -Dkeystore.password=${{ secrets.password }} -Dvisual.studio=${{ env.visual-studio-path }} -Dis.debug=false -Dbuild.number=${{ github.run_number }} test.on.mac
101+
- name: Upload Tests Failure Detail
102+
if: failure()
103+
uses: actions/upload-artifact@v1
104+
with:
105+
name: tests_failure_on_mac.txt
106+
path: build/test/tests_failure.txt
107+
108+

.github/workflows/main.yml .github/workflows/release.yml

+26-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
name: CI
1+
name: release
22

3-
on: [push]
3+
on:
4+
push:
5+
branches:
6+
- master
47

58
env:
69
air-sdk-path: ${{ github.workspace }}\air_sdk
@@ -45,7 +48,17 @@ jobs:
4548
encodedString: ${{ secrets.keystore }}
4649
- name: Build Script
4750
working-directory: build
48-
run: ant -debug -verbose -noinput "-Dair.sdk=${{ env.air-sdk-path }}" "-Dkeystore.file=${{ steps.copy_keystore.outputs.filePath }}" "-Dkeystore.password=${{ secrets.password }}" "-Dvisual.studio=${{ env.visual-studio-path }}" "-Dis.debug=false" "-Dbuild.number=${{ github.run_number }}" win
51+
run: ant -debug -verbose -noinput "-Dair.sdk=${{ env.air-sdk-path }}" "-Dkeystore.file=${{ steps.copy_keystore.outputs.filePath }}" "-Dkeystore.password=${{ secrets.password }}" "-Dvisual.studio=${{ env.visual-studio-path }}" "-Dis.debug=false" "-Dbuild.number=${{ github.run_number }}" package.on.win
52+
- name: Unit Tests
53+
id: unit-tests
54+
working-directory: build
55+
run: ant -debug -verbose -noinput "-Dair.sdk=${{ env.air-sdk-path }}" "-Dkeystore.file=${{ steps.copy_keystore.outputs.filePath }}" "-Dkeystore.password=${{ secrets.password }}" "-Dvisual.studio=${{ env.visual-studio-path }}" "-Dis.debug=false" "-Dbuild.number=${{ github.run_number }}" test.on.win
56+
- name: Upload Tests Failure Detail
57+
if: failure()
58+
uses: actions/upload-artifact@v1
59+
with:
60+
name: tests_failure.txt
61+
path: build/test/tests_failure.txt
4962
- uses: actions/upload-artifact@v1
5063
with:
5164
name: ANXOpenSSL32.dll
@@ -106,6 +119,16 @@ jobs:
106119
- name: Build Script
107120
working-directory: build
108121
run: ant -debug -verbose -noinput -Dair.sdk=${{ env.air-sdk-path }} -Dkeystore.file=${{ steps.copy_keystore.outputs.filePath }} -Dkeystore.password=${{ secrets.password }} -Dis.debug=false -Dbuild.number=${{ github.run_number }}
122+
- name: Unit Tests
123+
id: unit-tests
124+
working-directory: build
125+
run: ant -debug -verbose -noinput -Dair.sdk=${{ env.air-sdk-path }} -Dkeystore.file=${{ steps.copy_keystore.outputs.filePath }} -Dkeystore.password=${{ secrets.password }} -Dvisual.studio=${{ env.visual-studio-path }} -Dis.debug=false -Dbuild.number=${{ github.run_number }} test.on.mac
126+
- name: Upload Tests Failure Detail
127+
if: failure()
128+
uses: actions/upload-artifact@v1
129+
with:
130+
name: tests_failure_on_mac.txt
131+
path: build/test/tests_failure.txt
109132
- name: Create Release
110133
id: create-release
111134
uses: actions/create-release@v1
@@ -137,11 +160,3 @@ jobs:
137160
asset_name: com.github.airext.OpenSSL.swc
138161
asset_content_type: application/zip
139162

140-
141-
142-
143-
144-
145-
146-
147-

build/build.xml

+27-16
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@
426426
<copy file="../bin/${extension.id}.swc" tofile="../${project.name}-air/${project.name}-tests-flex/ane/${extension.id}.swc" force="true" />
427427

428428
<!-- Remove temporary directory -->
429-
<delete dir="temp"/>
429+
<!-- <delete dir="temp"/>-->
430430
</target>
431431

432432

@@ -450,23 +450,23 @@
450450
<arg line='-source-path+=${tests.project.dir}/src'/>
451451
<arg value="-library-path+=${tests.project.dir}/lib"/>
452452
<arg value="-external-library-path+=${app.ane.anes}"/>
453-
<arg value="-output=${tests.project.dir}/bin/flash/Main.swf"/>
453+
<arg value="-output=${tests.project.dir}/bin/test/Main.swf"/>
454454
<arg value="${tests.project.dir}/src/TestRunner.as"/>
455455
</java>
456456

457-
<copy file="${tests.project.dir}/bin/flash/Main.swf" tofile="flash/Main.swf" />
458-
<copy todir="flash/assets">
457+
<copy file="${tests.project.dir}/bin/test/Main.swf" tofile="test/Main.swf" />
458+
<copy todir="test/assets">
459459
<fileset dir="${tests.project.dir}/assets" />
460460
</copy>
461-
<copy todir="flash/extensions">
461+
<copy todir="test/extensions">
462462
<fileset dir="${tests.project.dir}/ane">
463463
<include name="*.ane" />
464464
</fileset>
465465
</copy>
466-
<copy file="${tests.project.dir}/Main-app.xml" tofile="flash/Main-app.xml" />
467-
<replaceregexp file="flash/Main-app.xml" match="(.content.)(.*)(.\/content.)" replace="\1Main.swf\3" />
466+
<copy file="${tests.project.dir}/Main-app.xml" tofile="test/Main-app.xml" />
467+
<replaceregexp file="test/Main-app.xml" match="(.content.)(.*)(.\/content.)" replace="\1Main.swf\3" />
468468

469-
<java jar="${air.sdk}/lib/adt.jar" dir="flash" fork="true" failonerror="true">
469+
<java jar="${air.sdk}/lib/adt.jar" dir="test" fork="true" failonerror="true">
470470
<arg line="-package"/>
471471
<arg line="-storetype pkcs12"/>
472472
<arg line="-keystore ${keystore.file}"/>
@@ -479,26 +479,29 @@
479479
<arg line="-extdir extensions" />
480480
</java>
481481

482-
<exec executable="open" dir="flash">
483-
<arg line="-a OpenSSLTests.app" />
482+
<pathconvert targetos="unix" property="tests.working.dir">
483+
<path path="test" />
484+
</pathconvert>
485+
486+
<exec executable="open" dir="test">
487+
<arg line="-a OpenSSLTests.app ${tests.working.dir}" />
484488
</exec>
485489

486490
<waitfor maxwait="2" maxwaitunit="minute">
487491
<or>
488-
<available file="tests/tests_success.txt" />
489-
<available file="tests/tests_failure.txt" />
492+
<available file="test/tests_success.txt" />
493+
<available file="test/tests_failure.txt" />
490494
</or>
491495
</waitfor>
492496

493497
<fail>
494498
<condition>
495-
<available file="tests/tests_failure.txt" />
499+
<available file="test/tests_failure.txt" />
496500
</condition>
497501
</fail>
498502

499503
</target>
500504

501-
502505
<target name="test.on.win">
503506

504507
<property name="tests.project.dir" value="../${project.name}-air/openssl-tests-flex" />
@@ -544,17 +547,25 @@
544547
<arg line="-extdir extensions" />
545548
</java>
546549

550+
<pathconvert targetos="windows" property="tests.working.dir">
551+
<path path="test" />
552+
</pathconvert>
553+
547554
<exec executable="powershell" dir="test">
548-
<arg line="Start-Process -FilePath OpenSSLTests/OpenSSLTestRunner.exe -WorkingDirectory ." />
555+
<arg line="Start-Process -FilePath OpenSSLTests/OpenSSLTestRunner.exe ${tests.working.dir}" />
549556
</exec>
550557

551-
<waitfor maxwait="2" maxwaitunit="minute">
558+
<waitfor maxwait="4" maxwaitunit="minute">
552559
<or>
553560
<available file="test/tests_success.txt" />
554561
<available file="test/tests_failure.txt" />
555562
</or>
556563
</waitfor>
557564

565+
<exec executable="powershell">
566+
<arg line="Get-ChildItem -Path . –Recurse" />
567+
</exec>
568+
558569
<fail>
559570
<condition>
560571
<not>

openssl-air/openssl-tests-flex/src/com/github/airext/flexunit/listener/CIFileListener.as

+2-2
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ public class CIFileListener extends EventDispatcher implements IAsyncCompletionR
113113
// MARK: - Handlers
114114

115115
private function onInvoke(event: InvokeEvent): void {
116-
handler("currentDirectory: " + event.currentDirectory.nativePath);
117-
currentDirectory = event.currentDirectory;
116+
handler("invoke arguments: " + event.arguments);
117+
currentDirectory = new File(event.arguments[0]);
118118
}
119119
}
120120
}

0 commit comments

Comments
 (0)