Skip to content

Commit

Permalink
backport of commit ac94f40
Browse files Browse the repository at this point in the history
  • Loading branch information
tgross committed Feb 14, 2023
1 parent fd011ce commit 75a14e7
Show file tree
Hide file tree
Showing 1,061 changed files with 9,343 additions and 41,726 deletions.
7 changes: 0 additions & 7 deletions .changelog/11170.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/12582.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/13976.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/14492.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/14775.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/14897.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/14898.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/15073.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/15091.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/15328.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/15435.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/15469.txt

This file was deleted.

7 changes: 0 additions & 7 deletions .changelog/15522.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/15552.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/15726.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/15745.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/15746.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/15755.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/15761.txt

This file was deleted.

3 changes: 3 additions & 0 deletions .changelog/15769.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:improvement
build: Update to go1.19.5
```
3 changes: 0 additions & 3 deletions .changelog/15780.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/15816.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/15819.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/15835.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/15842.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/15844.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/15848.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/15852.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/15862.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/15864.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/15870.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/15876.txt

This file was deleted.

7 changes: 0 additions & 7 deletions .changelog/15933.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/15961.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/15983.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/15997.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/16006.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/16055.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/16068.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/16074.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/16085.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/16100.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/16111.txt

This file was deleted.

2 changes: 1 addition & 1 deletion .changelog/16151.txt → .changelog/16126.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```release-note:improvement
```release-note:security
artifact: Provide mitigations against unbounded artifact decompression
```
3 changes: 0 additions & 3 deletions .changelog/16138.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/7794.txt

This file was deleted.

3 changes: 0 additions & 3 deletions .changelog/9053.txt

This file was deleted.

25 changes: 20 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ commands:
command: |
set -x
echo installing golang 1.20
echo installing golang ${GOLANG_VERSION}
case "${OSTYPE}" in
linux*) os="linux" ;;
Expand All @@ -88,13 +88,13 @@ commands:
then
sudo rm -rf << parameters.target_directory >>/go
sudo mkdir -p << parameters.target_directory >>
curl -SL --fail -o /tmp/golang.tar.gz https://dl.google.com/go/go1.20.${os}-amd64.tar.gz
curl -SL --fail -o /tmp/golang.tar.gz https://dl.google.com/go/go${GOLANG_VERSION}.${os}-amd64.tar.gz
sudo tar -C << parameters.target_directory >> -xzf /tmp/golang.tar.gz
rm -rf /tmp/golang.tar.gz
else
rm -rf << parameters.target_directory >>/go
mkdir -p <<parameters.target_directory >>
curl -SL --fail -o /tmp/go.zip https://dl.google.com/go/go1.20.windows-amd64.zip
curl -SL --fail -o /tmp/go.zip https://dl.google.com/go/go${GOLANG_VERSION}.windows-amd64.zip
unzip -q -o /tmp/go.zip -d << parameters.target_directory >>
rm -rf /tmp/go.zip
fi
Expand Down Expand Up @@ -339,6 +339,17 @@ jobs:
path: /tmp/test-reports
- store_artifacts:
path: /tmp/test-reports
lint-go:
executor: go
steps:
- checkout
- run: apt-get update; apt-get install -y shellcheck sudo unzip
- install-buf
- install-circleci-local-cli
- run: make deps lint-deps
- run: make check
- run: make checkscripts
- run: mkdir -p ui/dist && make generate-all static-assets
build-darwin-binaries:
executor: go-macos
steps:
Expand Down Expand Up @@ -499,15 +510,19 @@ workflows:
ignore:
- stable-website

- test-e2e:
filters:
- lint-go:
# check branches are almost all the backend branches
filters: &backend_check_branches_filter
branches:
ignore:
- /^.-ui\b.*/
- /^docs-.*/
- /^backport/docs-.*/
- stable-website

- test-e2e:
filters: *backend_check_branches_filter

- test-ui:
filters:
branches:
Expand Down
17 changes: 0 additions & 17 deletions .github/workflows/check-legacy-links-format.yml

This file was deleted.

5 changes: 2 additions & 3 deletions .github/workflows/ember-test-audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ name: Ember test audit comparison
on:
pull_request:
paths:
- '.github/workflows/ember*'
- 'ui/**'

defaults:
Expand All @@ -25,7 +24,7 @@ jobs:
node-version: '14'
- run: yarn --frozen-lockfile
- run: mkdir -p /tmp/test-reports
- run: npx ember-test-audit 1 --json --output ../base-audit.json
- run: npx ember-test-audit 3 --json --output ../base-audit.json
- name: Upload result
uses: actions/upload-artifact@v2
with:
Expand All @@ -42,7 +41,7 @@ jobs:
node-version: '14'
- run: yarn --frozen-lockfile
- run: mkdir -p /tmp/test-reports
- run: npx ember-test-audit 1 --json --output ../pr-audit.json
- run: npx ember-test-audit 3 --json --output ../pr-audit.json
- name: Upload result
uses: actions/upload-artifact@v2
with:
Expand Down
23 changes: 0 additions & 23 deletions .github/workflows/lock.yml

This file was deleted.

8 changes: 4 additions & 4 deletions .github/workflows/test-core.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:
push:
branches:
- main
- release/**
- release-**
paths-ignore:
- 'README.md'
- 'CHANGELOG.md'
Expand All @@ -41,8 +41,8 @@ on:
env:
VERBOSE: 1
GOTESTARCH: amd64
CONSUL_VERSION: 1.14.4
VAULT_VERSION: 1.12.2
CONSUL_VERSION: 1.12.6
VAULT_VERSION: 1.12.0
NOMAD_SLOW_TEST: 0
NOMAD_TEST_LOG_LEVEL: OFF
jobs:
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
tests-api:
needs: [mods]
runs-on: [custom, xl, 22.04]
timeout-minutes: 8
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: hashicorp/setup-golang@v1
Expand Down
16 changes: 0 additions & 16 deletions .github/workflows/test-link-rewrites.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
.DS_Store
Thumbs.db
.idea
.fleet

# Folders
_obj
Expand Down Expand Up @@ -62,7 +61,6 @@ go.work.sum

# init outputs
example.nomad
example.nomad.hcl
spec.hcl
volume.hcl
nomad_linux_amd64
Expand Down
Loading

0 comments on commit 75a14e7

Please sign in to comment.