Skip to content

Commit 86320dd

Browse files
committed
Cleanup earthly remains
1 parent d9a1540 commit 86320dd

File tree

6 files changed

+10
-203
lines changed

6 files changed

+10
-203
lines changed

.dagger/src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,10 @@ export class AtomicServer {
6767
async ci(@argument() netlifyAuthToken: Secret): Promise<string> {
6868
await Promise.all([
6969
this.docsPublish(netlifyAuthToken),
70+
this.typedocPublish(netlifyAuthToken),
71+
this.endToEnd(netlifyAuthToken),
7072
this.jsLint(),
7173
this.jsTest(),
72-
this.endToEnd(netlifyAuthToken),
7374
this.rustTest(),
7475
this.rustClippy(),
7576
this.rustFmt(),

CHANGELOG.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
# Changelog
22

3-
## UNRELEASED
4-
5-
- [#1048](https://github.com/atomicdata-dev/atomic-server/issues/1048) Fix search index not removing old versions of resources.
6-
73
List of changes for this repo, including `atomic-cli`, `atomic-server` and `atomic-lib`.
84
By far most changes relate to `atomic-server`, so if not specified, assume the changes are relevant only for the server.
95
**Changes to JS assets (including the front-end and JS libraries) are not shown here**, but in [`/browser/CHANGELOG`](/browser/CHANGELOG.md).
106
See [STATUS.md](server/STATUS.md) to learn more about which features will remain stable.
117

8+
## UNRELEASED
9+
10+
- [#1048](https://github.com/atomicdata-dev/atomic-server/issues/1048) Fix search index not removing old versions of resources.
11+
- [#1056](https://github.com/atomicdata-dev/atomic-server/issues/1056) Switched from Earthly to Dagger for CI. Also made improvements to E2E test publishing and building docker images.
12+
1213
## [v0.40.2]
1314

1415
- fix property sort order when importing + add tests #980

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ cargo install cross
9696
cross build --target x86_64-unknown-linux-musl --bin atomic-server --release
9797
```
9898

99-
Note that this is also done in the `earthly` file.
99+
Check the Dagger index.ts file to see how cross compilation is done in the CI.
100100

101101
## Git policy
102102

@@ -231,7 +231,7 @@ Note:
231231

232232
### CI situation
233233

234-
- Github Action for `push`: builds + tests + docker (using `earthly`, see `Earthfile`)
234+
- Github Action for `push`: builds + tests + docker (using `dagger`, see `.dagger` and the `.github` folders)
235235
- Github Action for `tag`: create release + publish binaries
236236

237237
### Publishing manually - doing the CI's work

Earthfile

Lines changed: 0 additions & 155 deletions
This file was deleted.

browser/Earthfile

Lines changed: 0 additions & 40 deletions
This file was deleted.

browser/e2e/tests/test-utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export async function newDrive(page: Page) {
105105
await expect(currentDriveTitle(page)).not.toHaveText('localhost');
106106
await expect(currentDriveTitle(page)).toHaveText(driveTitle);
107107
const driveURL = await getCurrentSubject(page);
108-
expect(driveURL).toContain('localhost');
108+
expect(driveURL).toContain(FRONTEND_URL);
109109

110110
return { driveURL: driveURL as string, driveTitle };
111111
}

0 commit comments

Comments
 (0)