mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 21:39:07 +00:00
try without pipefail
This commit is contained in:
parent
00b069891a
commit
dfdfedabdb
10 changed files with 13 additions and 11 deletions
2
.github/workflows/benchmarks.yml
vendored
2
.github/workflows/benchmarks.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
on: [pull_request]
|
#on: [pull_request]
|
||||||
|
|
||||||
name: Benchmarks
|
name: Benchmarks
|
||||||
|
|
||||||
|
|
2
.github/workflows/macos_x86_64.yml
vendored
2
.github/workflows/macos_x86_64.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
on: [pull_request]
|
#on: [pull_request]
|
||||||
|
|
||||||
name: Macos x86-64 rust tests
|
name: Macos x86-64 rust tests
|
||||||
|
|
||||||
|
|
2
.github/workflows/markdown_link_check.yml
vendored
2
.github/workflows/markdown_link_check.yml
vendored
|
@ -1,5 +1,5 @@
|
||||||
on:
|
on:
|
||||||
pull_request:
|
#pull_request:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 9 * * *' # 9=9am utc+0
|
- cron: '0 9 * * *' # 9=9am utc+0
|
||||||
|
|
||||||
|
|
2
.github/workflows/nix_linux_x86_64.yml
vendored
2
.github/workflows/nix_linux_x86_64.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
on: [pull_request]
|
#on: [pull_request]
|
||||||
|
|
||||||
name: Nix linux x86_64 cargo test
|
name: Nix linux x86_64 cargo test
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
on: [pull_request]
|
#on: [pull_request]
|
||||||
|
|
||||||
name: Nix apple silicon cargo test
|
name: Nix apple silicon cargo test
|
||||||
|
|
||||||
|
|
2
.github/workflows/nix_macos_x86_64.yml
vendored
2
.github/workflows/nix_macos_x86_64.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
on: [pull_request]
|
#on: [pull_request]
|
||||||
|
|
||||||
name: Nix macOS x86_64 cargo test
|
name: Nix macOS x86_64 cargo test
|
||||||
|
|
||||||
|
|
2
.github/workflows/spellcheck.yml
vendored
2
.github/workflows/spellcheck.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
on: [pull_request]
|
#on: [pull_request]
|
||||||
|
|
||||||
name: SpellCheck
|
name: SpellCheck
|
||||||
|
|
||||||
|
|
2
.github/workflows/ubuntu_x86_64.yml
vendored
2
.github/workflows/ubuntu_x86_64.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
on: [pull_request]
|
#on: [pull_request]
|
||||||
|
|
||||||
name: CI
|
name: CI
|
||||||
|
|
||||||
|
|
2
.github/workflows/windows.yml
vendored
2
.github/workflows/windows.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
on: [pull_request]
|
#on: [pull_request]
|
||||||
|
|
||||||
name: Test windows build
|
name: Test windows build
|
||||||
|
|
||||||
|
|
|
@ -3,10 +3,12 @@
|
||||||
# retrieves roc_releases.json, expects TOKEN to be set to ${{ secrets.GITHUB_TOKEN }}
|
# retrieves roc_releases.json, expects TOKEN to be set to ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
# https://vaneyckt.io/posts/safer_bash_scripts_with_set_euxo_pipefail/
|
# https://vaneyckt.io/posts/safer_bash_scripts_with_set_euxo_pipefail/
|
||||||
set -euxo pipefail
|
# set -euxo pipefail
|
||||||
|
|
||||||
curl --request GET \
|
curl --request GET \
|
||||||
--url https://api.github.com/repos/roc-lang/roc/releases \
|
--url https://api.github.com/repos/roc-lang/roc/releases \
|
||||||
--header 'authorization: Bearer $TOKEN' \
|
--header 'authorization: Bearer $TOKEN' \
|
||||||
--header 'content-type: application/json' \
|
--header 'content-type: application/json' \
|
||||||
--output roc_releases.json
|
--output roc_releases.json
|
||||||
|
|
||||||
|
cat roc_releases.json
|
Loading…
Add table
Add a link
Reference in a new issue