-
This is the content of .onedev-buildspec.yml
version: 18 jobs: - name: Build WSA jobExecutor: Linux-Shell-Executor steps: - !CheckoutStep name: Checkout Code cloneCredential: !DefaultCredential {} withLfs: false withSubmodules: false condition: ALL_PREVIOUS_STEPS_WERE_SUCCESSFUL - !CommandStep name: Build WSA runInContainer: false interpreter: !DefaultInterpreter commands: - if [ "@param:Use proxy@" = "Yes" ] - then - "\texport ALL_PROXY=\"@param:Proxy protocol@://@param:Proxy host@:@param:Proxy\ \ port@\"" - "\texport all_proxy=\"@param:Proxy protocol@://@param:Proxy host@:@param:Proxy\ \ port@\"" - "\texport HTTP_PROXY=\"@param:Proxy protocol@://@param:Proxy host@:@param:Proxy\ \ port@\"" - "\texport http_proxy=\"@param:Proxy protocol@://@param:Proxy host@:@param:Proxy\ \ port@\"" - "\texport HTTPS_PROXY=\"@param:Proxy protocol@://@param:Proxy host@:@param:Proxy\ \ port@\"" - "\texport https_proxy=\"@param:Proxy protocol@://@param:Proxy host@:@param:Proxy\ \ port@\"" - fi - cd scripts - chmod +x ./build.sh - parameter="" - if [ "@param:Root solution@" = "magisk" ] - then - "\tparameter=\"${parameter} --magisk-ver @param:Magisk version@\"" - fi - if [ "@param:GApps brand@" = "OpenGApps" ] - then - "\tparameter=\"${parameter} --gapps-variant @param:GApps variant@\"" - fi - if [ "@param:Remove Amazon Appstore@" = "Yes" ] - then - "\tparameter=\"${parameter} --remove-amazon\"" - fi - if [ "@param:Arch@" = "x64,arm64" -o "@param:Arch@" = "arm64,x64" ] - then - "\techo \"./build.sh --arch x64 --release-type @param:WSA release type@ --gapps-brand\ \ @param:GApps brand@ --root-sol @param:Root solution@ --compress-format @param:Compress\ \ format@ ${parameter}\"" - "\techo \"./build.sh --arch arm64 --release-type @param:WSA release type@\ \ --gapps-brand @param:GApps brand@ --root-sol @param:Root solution@ --compress-format\ \ @param:Compress format@ ${parameter}\"" - "\tprintf \"\\n\\n\\n\"" - "\t./build.sh --arch x64 --release-type @param:WSA release type@ --gapps-brand\ \ @param:GApps brand@ --root-sol @param:Root solution@ --compress-format @param:Compress\ \ format@ ${parameter}" - "\t./build.sh --arch arm64 --release-type @param:WSA release type@ --gapps-brand\ \ @param:GApps brand@ --root-sol @param:Root solution@ --compress-format @param:Compress\ \ format@ ${parameter}" - "\tprintf \"\\n\\n\\n\"" - "\techo \"./build.sh --arch x64 --release-type @param:WSA release type@ --gapps-brand\ \ @param:GApps brand@ --root-sol @param:Root solution@ --compress-format @param:Compress\ \ format@ ${parameter}\"" - "\techo \"./build.sh --arch arm64 --release-type @param:WSA release type@\ \ --gapps-brand @param:GApps brand@ --root-sol @param:Root solution@ --compress-format\ \ @param:Compress format@ ${parameter}\"" - else - "\techo \"./build.sh --arch @param:Arch@ --release-type @param:WSA release\ \ type@ --gapps-brand @param:GApps brand@ --root-sol @param:Root solution@\ \ --compress-format @param:Compress format@ ${parameter}\"" - "\tprintf \"\\n\\n\\n\"" - "\t./build.sh --arch @param:Arch@ --release-type @param:WSA release type@\ \ --gapps-brand @param:GApps brand@ --root-sol @param:Root solution@ --compress-format\ \ @param:Compress format@ ${parameter}" - "\tprintf \"\\n\\n\\n\"" - "\techo \"./build.sh --arch @param:Arch@ --release-type @param:WSA release\ \ type@ --gapps-brand @param:GApps brand@ --root-sol @param:Root solution@\ \ --compress-format @param:Compress format@ ${parameter}\"" - fi useTTY: false condition: ALL_PREVIOUS_STEPS_WERE_SUCCESSFUL - !PublishArtifactStep name: Publish Artifacts sourcePath: ./output artifacts: '*' condition: ALL_PREVIOUS_STEPS_WERE_SUCCESSFUL paramSpecs: - !BooleanParam name: Use proxy defaultValueProvider: !TrueDefaultValue {} - !ChoiceParam name: Proxy protocol allowMultiple: false allowEmpty: false choiceProvider: !SpecifiedChoices choices: - value: http color: '#0d87e9' - value: socks5 color: '#0d87e9' defaultValueProvider: !SpecifiedDefaultValue value: http - !TextParam name: Proxy host allowEmpty: false multiline: false defaultValueProvider: !SpecifiedDefaultValue value: winhost - !IntegerParam name: Proxy port allowEmpty: false minValue: 1 maxValue: 65535 defaultValueProvider: !SpecifiedDefaultValue value: 15866 - !ChoiceParam name: Arch description: Architecture of WSA. allowMultiple: true allowEmpty: false choiceProvider: !SpecifiedChoices choices: - value: x64 color: '#0d87e9' - value: arm64 color: '#0d87e9' defaultValueProvider: !SpecifiedDefaultValue value: x64 defaultMultiValueProvider: !SpecifiedDefaultMultiValue value: - x64 - !ChoiceParam name: WSA release type description: RP means Release Preview, WIS means Insider Slow, WIF means Insider Fast. allowMultiple: false allowEmpty: false choiceProvider: !SpecifiedChoices choices: - value: retail color: '#0d87e9' - value: RP color: '#0d87e9' - value: WIS color: '#0d87e9' - value: WIF color: '#0d87e9' defaultValueProvider: !SpecifiedDefaultValue value: WIF - !ChoiceParam name: Root solution allowMultiple: false allowEmpty: false choiceProvider: !SpecifiedChoices choices: - value: magisk color: '#0d87e9' - value: none color: '#0d87e9' defaultValueProvider: !SpecifiedDefaultValue value: magisk - !ChoiceParam name: Magisk version allowMultiple: false allowEmpty: false choiceProvider: !SpecifiedChoices choices: - value: stable color: '#0d87e9' - value: beta color: '#0d87e9' - value: canary color: '#0d87e9' - value: debug color: '#0d87e9' - value: release color: '#0d87e9' defaultValueProvider: !SpecifiedDefaultValue value: stable - !ChoiceParam name: GApps brand allowMultiple: false allowEmpty: false choiceProvider: !SpecifiedChoices choices: - value: OpenGApps color: '#0d87e9' - value: MindTheGapps color: '#0d87e9' - value: none color: '#0d87e9' defaultValueProvider: !SpecifiedDefaultValue value: OpenGApps - !ChoiceParam name: GApps variant allowMultiple: false allowEmpty: false choiceProvider: !SpecifiedChoices choices: - value: super color: '#0d87e9' - value: stock color: '#0d87e9' - value: full color: '#0d87e9' - value: mini color: '#0d87e9' - value: micro color: '#0d87e9' - value: nano color: '#0d87e9' - value: pico color: '#0d87e9' - value: tvstock color: '#0d87e9' - value: tvmini color: '#0d87e9' defaultValueProvider: !SpecifiedDefaultValue value: pico - !ChoiceParam name: Compress format allowMultiple: false allowEmpty: false choiceProvider: !SpecifiedChoices choices: - value: 7z color: '#0d87e9' - value: xz color: '#0d87e9' - value: zip color: '#0d87e9' defaultValueProvider: !SpecifiedDefaultValue value: 7z - !BooleanParam name: Remove Amazon Appstore defaultValueProvider: !TrueDefaultValue {} retryCondition: never maxRetries: 3 retryDelay: 30 cpuRequirement: 250 memoryRequirement: 256 timeout: 3600 -
Name Previous Value Current Value Priority
Major
Normal
-
OneDev
changed state to 'Closed' 3 years ago
Previous Value Current Value Open
Closed
-
State changed as code fixing the issue is committed (7f48d0ce)
-
OneDev
changed state to 'Released' 3 years ago
Previous Value Current Value Closed
Released
-
State changed as build #3446 is successful
| Type |
Bug
|
| Priority |
Normal
|
| Assignee | |
| Affected Versions |
Not Found
|
Issue Votes (0)
I have just updated ondev from 7.9.12 to 8.0.0 when visiting /project/~build
when visiting .onedev-buildspec.yml