This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const org = "YOUR_ORG"; | |
| const feed = "YOUR_FEED"; | |
| const pat = process.env.AZDO_PAT; // PAT with Packaging (read/write/delete) | |
| const namePattern = /^pkg\.pkg/; // for a particular artifact use /^pkg\.pkg:foo-bar/ | |
| if (!pat) { | |
| console.error("❌ Missing AZDO_PAT environment variable"); | |
| process.exit(1); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| task 'showdeps' do | |
| raise 'Need to define ENV property DEP' unless ENV['DEP'] | |
| Buildr.transitive(ENV['DEP']).each do |a| | |
| puts a.to_spec | |
| end | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT | |
| TableName = s.name + '.' + t.name, | |
| IndexName = ind.name, | |
| ColumnName = col.name, | |
| ind.type_desc, | |
| ind.is_unique, | |
| ind.has_filter, | |
| ind.filter_definition, | |
| ic.index_column_id, | |
| ic.is_descending_key, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl -v -u admin:admin --upload-file artifact-version.zip http://repo/repository/releases/group/artifact/version/artifact-version.zip |