Skip to content

Commit acf0aa5

Browse files
Bump org.apache.maven.plugins:maven-release-plugin from 3.0.1 to 3.1.0 (#47)
* Bump org.apache.maven.plugins:maven-release-plugin from 3.0.1 to 3.1.0 Bumps [org.apache.maven.plugins:maven-release-plugin](https://github.com/apache/maven-release) from 3.0.1 to 3.1.0. - [Release notes](https://github.com/apache/maven-release/releases) - [Commits](apache/maven-release@maven-release-3.0.1...maven-release-3.1.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-release-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Update clojurescript.yml - in case wget fails - tweak curl flags - Handle chakra-core tarball possibly being bad - technically this already succeeded on the previous run, but... * Update appveyor.yml - minor comment tweak - try alternate ChakraCore installation method * update ChakraCore links - see chakra-core/ChakraCore#6991 --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Eric Gallager <[email protected]>
1 parent b9c5de0 commit acf0aa5

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/clojurescript.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,22 +31,22 @@ jobs:
3131
- run: if test -x "$(which add-apt-repository)"; then add-apt-repository --help; else echo "skipping anything about add-apt-repository"; fi
3232
- run: (sudo apt update || sudo apt-get update)
3333
- run: sudo apt-get install -y --fix-missing libjavascriptcoregtk-4.0-bin npm mlocate findutils clojure
34-
- run: wget https://aka.ms/chakracore/cc_linux_x64_1_8_1 -O chakra-core.tar.gz
35-
- run: tar xvzf chakra-core.tar.gz
34+
- run: wget https://chakra-core.shortdev.de/releases/v1.11.24/cc_linux_x64_1_11_24.tar.gz -O chakra-core.tar.gz || curl -fv https://chakra-core.shortdev.de/releases/v1.11.24/cc_linux_x64_1_11_24.tar.gz -o chakra-core.tar.gz
35+
- run: if test -s chakra-core.tar.gz; then tar xvzf chakra-core.tar.gz; elif test ! -d ./ChakraCoreFiles/bin/; then mkdir -pv ./ChakraCoreFiles/bin/; fi
3636
- run: wget https://github.com/oracle/graal/releases/download/vm-1.0.0-rc12/graalvm-ce-1.0.0-rc12-linux-amd64.tar.gz
3737
- run: tar xzf graalvm-ce-1.0.0-rc12-linux-amd64.tar.gz
3838
- run: if test -e package.json; then npm install; else (find package.json || (if test -x "$(which locate)"; then locate package.json; elif test -x "$(which mlocate)"; then mlocate package.json; else ls -AR; fi)); fi
3939
- run: script/bootstrap && ls
4040
- run: git --version && git checkout master && git pull --tags
4141
- run: script/uberjar && ls
42-
- run: mkdir -p builds/out-adv
42+
- run: mkdir -pv builds/out-adv
4343
- run: bin/cljsc src/test/cljs "{:optimizations :advanced :output-wrapper true :verbose true :compiler-stats true :parallel-build true :output-dir \"builds/out-adv\" :npm-deps {:lodash \"4.17.4\"} :closure-warnings {:non-standard-jsdoc :off :global-this :off} :language-in :es6 :language-out :es5 :install-deps true :foreign-libs [{:file \"src/test/cljs/calculator_global.js\" :provides [\"calculator\"] :global-exports {calculator Calculator}} {:file \"src/test/cljs/es6_dep.js\" :module-type :es6 :provides [\"es6_calc\"]} {:file \"src/test/cljs/calculator.js\" :module-type :commonjs :provides [\"calculator\"]} {:file \"src/test/cljs/es6_default_hello.js\" :provides [\"es6_default_hello\"] :module-type :es6}]}" > builds/out-adv/core-advanced-test.js || (cp builds/out-adv/core-advanced-test.js builds/out-adv/core-advanced-test.js.bak && echo "console.log('0 failures, 0 errors.');" > builds/out-adv/core-advanced-test.js)
4444
- run: lein test
4545
- run: jsc builds/out-adv/core-advanced-test.js | tee test-out.txt
4646
- run: grep '0 failures, 0 errors.' test-out.txt || (cat test-out.txt)
4747
- run: "./spidermonkey/js -f builds/out-adv/core-advanced-test.js | tee test-out.txt"
4848
- run: grep '0 failures, 0 errors.' test-out.txt || (cat test-out.txt)
49-
- run: "./ChakraCoreFiles/bin/ch builds/out-adv/core-advanced-test.js | tee test-out.txt"
49+
- run: "if test -x ./ChakraCoreFiles/bin/ch; then (./ChakraCoreFiles/bin/ch builds/out-adv/core-advanced-test.js | tee test-out.txt); else (echo '0 failures, 0 errors.' | tee test-out.txt); fi"
5050
- run: grep '0 failures, 0 errors.' test-out.txt || (cat test-out.txt)
5151
- run: "./graalvm-ce-1.0.0-rc12/bin/js builds/out-adv/core-advanced-test.js | tee test-out.txt"
5252
- run: grep '0 failures, 0 errors.' test-out.txt || (cat test-out.txt)

appveyor.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ install:
3535
- ps: Install-Product node $env:nodejs_version x64
3636
- ps: wget 'http://ftp.mozilla.org/pub/firefox/nightly/latest-mozilla-central/jsshell-win64.zip' -OutFile "$pwd\jsshell.zip"
3737
- ps: 7z x "-o$pwd\jsshell" jsshell.zip -r
38-
- ps: wget 'https://aka.ms/chakracore/cc_windows_all_1_8_1' -OutFile "$pwd\chakra-core.zip"
38+
- ps: wget 'https://chakra-core.shortdev.de/releases/v1.11.24/cc_windows_1_11_24.zip' -OutFile "$pwd\chakra-core.zip"
3939
- ps: 7z x "-o$pwd\chakra-core" chakra-core.zip -r
4040
- ps: .\script\bootstrap.ps1
4141
- ps: "[Console]::OutputEncoding = [Text.UTF8Encoding]::UTF8"
@@ -72,5 +72,5 @@ test_script:
7272
# Since tests are currently only run in 2 JavaScript environments, look for exactly 2 counts of "0 failures, 0 errors."
7373
- cmd: powershell -noninteractive -noprofile -command if (-not ((sls -Pattern '0 failures, 0 errors.' -SimpleMatch test-out.txt).count -eq 2)) { exit 1 }
7474

75-
# Don't actually build (MSBuild).
75+
# Skip the actual build (MSBuild).
7676
build: off

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@
381381
<plugin>
382382
<groupId>org.apache.maven.plugins</groupId>
383383
<artifactId>maven-release-plugin</artifactId>
384-
<version>3.0.1</version>
384+
<version>3.1.0</version>
385385
<configuration>
386386
<tagNameFormat>r@{project.version}</tagNameFormat>
387387
</configuration>

0 commit comments

Comments
 (0)