mirror of
https://github.com/docker/setup-buildx-action.git
synced 2025-05-14 10:29:29 +02:00
Allow building buildx from source
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
parent
a1c666d855
commit
f40e8894f1
14 changed files with 342 additions and 44 deletions
9
__tests__/git.test.ts
Normal file
9
__tests__/git.test.ts
Normal file
|
@ -0,0 +1,9 @@
|
|||
import * as git from '../src/git';
|
||||
|
||||
describe('git', () => {
|
||||
it('returns git remote ref', async () => {
|
||||
const ref: string = await git.getRemoteSha('https://github.com/docker/buildx.git', 'refs/pull/648/head');
|
||||
console.log(`ref: ${ref}`);
|
||||
expect(ref).toEqual('f11797113e5a9b86bd976329c5dbb8a8bfdfadfa');
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue