Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump org.apache.maven.plugins:maven-release-plugin from 3.0.1 to 3.1.0 #47

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/clojurescript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,22 +31,22 @@ jobs:
- run: if test -x "$(which add-apt-repository)"; then add-apt-repository --help; else echo "skipping anything about add-apt-repository"; fi
- run: (sudo apt update || sudo apt-get update)
- run: sudo apt-get install -y --fix-missing libjavascriptcoregtk-4.0-bin npm mlocate findutils clojure
- run: wget https://aka.ms/chakracore/cc_linux_x64_1_8_1 -O chakra-core.tar.gz
- run: tar xvzf chakra-core.tar.gz
- 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
- 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
- run: wget https://github.com/oracle/graal/releases/download/vm-1.0.0-rc12/graalvm-ce-1.0.0-rc12-linux-amd64.tar.gz
- run: tar xzf graalvm-ce-1.0.0-rc12-linux-amd64.tar.gz
- 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
- run: script/bootstrap && ls
- run: git --version && git checkout master && git pull --tags
- run: script/uberjar && ls
- run: mkdir -p builds/out-adv
- run: mkdir -pv builds/out-adv
- 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)
- run: lein test
- run: jsc builds/out-adv/core-advanced-test.js | tee test-out.txt
- run: grep '0 failures, 0 errors.' test-out.txt || (cat test-out.txt)
- run: "./spidermonkey/js -f builds/out-adv/core-advanced-test.js | tee test-out.txt"
- run: grep '0 failures, 0 errors.' test-out.txt || (cat test-out.txt)
- run: "./ChakraCoreFiles/bin/ch builds/out-adv/core-advanced-test.js | tee test-out.txt"
- 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"
- run: grep '0 failures, 0 errors.' test-out.txt || (cat test-out.txt)
- run: "./graalvm-ce-1.0.0-rc12/bin/js builds/out-adv/core-advanced-test.js | tee test-out.txt"
- run: grep '0 failures, 0 errors.' test-out.txt || (cat test-out.txt)
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ install:
- ps: Install-Product node $env:nodejs_version x64
- ps: wget 'http://ftp.mozilla.org/pub/firefox/nightly/latest-mozilla-central/jsshell-win64.zip' -OutFile "$pwd\jsshell.zip"
- ps: 7z x "-o$pwd\jsshell" jsshell.zip -r
- ps: wget 'https://aka.ms/chakracore/cc_windows_all_1_8_1' -OutFile "$pwd\chakra-core.zip"
- ps: wget 'https://chakra-core.shortdev.de/releases/v1.11.24/cc_windows_1_11_24.zip' -OutFile "$pwd\chakra-core.zip"
- ps: 7z x "-o$pwd\chakra-core" chakra-core.zip -r
- ps: .\script\bootstrap.ps1
- ps: "[Console]::OutputEncoding = [Text.UTF8Encoding]::UTF8"
Expand Down Expand Up @@ -72,5 +72,5 @@ test_script:
# Since tests are currently only run in 2 JavaScript environments, look for exactly 2 counts of "0 failures, 0 errors."
- cmd: powershell -noninteractive -noprofile -command if (-not ((sls -Pattern '0 failures, 0 errors.' -SimpleMatch test-out.txt).count -eq 2)) { exit 1 }

# Don't actually build (MSBuild).
# Skip the actual build (MSBuild).
build: off
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.1</version>
<version>3.1.0</version>
<configuration>
<tagNameFormat>r@{project.version}</tagNameFormat>
</configuration>
Expand Down
Loading